using Org.BouncyCastle.Crypto.Paddings; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Common.Library.DataLayer.DTO.Websites.DMCDynamics.LLC { public class TestimonialsDTO { public int TestimonialID { get; set; } public string CompanyName { get; set; } public string CompanySpokesPerson { get; set; } public string CompanyTitle { get; set; } public string CompanyWebsite { get; set; } public string Testimonial { get; set; } public TestimonialImagesDTO TestimonialImage { get; set; } public string TestimonialGUID { get; set; } } public class TestimonialsDTOCollection : List { } }