You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
745 B
C#

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<TestimonialsDTO> { }
}