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.

12 lines
308 B
C#

using System.Collections.Generic;
namespace Common.Library.DataLayer.DTO.Websites.JasonNeumannAudio.com
{
public class ServicesDTO
{
public int ServicePageID { get; set; }
public string ServiceText { get; set; }
}
public class ServicesDTOCollection : List<ServicesDTO>{ }
}