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.

15 lines
402 B
C#

using System.Collections.Generic;
4 years ago
namespace Common.Library.DataLayer.DTO.Websites.DMCDynamics.LLC
{
public class ServiceInformationDTO
{
public int ServiceInformationID { get; set; }
public int ServiceID { get; set; }
public string ServiceDescription { get; set; }
}
public class ServiceInformationDTOCollection : List<ServiceInformationDTO> {}
}