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#
15 lines
402 B
C#
4 years ago
|
using System.Collections.Generic;
|
||
|
|
||
4 years ago
|
namespace Common.Library.DataLayer.DTO.Websites.DMCDynamics.LLC
|
||
4 years ago
|
{
|
||
|
public class ServiceInformationDTO
|
||
|
{
|
||
|
public int ServiceInformationID { get; set; }
|
||
|
public int ServiceID { get; set; }
|
||
|
public string ServiceDescription { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
public class ServiceInformationDTOCollection : List<ServiceInformationDTO> {}
|
||
|
}
|