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
441 B
C#
15 lines
441 B
C#
3 years ago
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Common.Library.DataLayer.DTO.Websites.DMCDynamics.LLC
|
||
|
{
|
||
|
public class ServicesDTO
|
||
|
{
|
||
|
public int ServiceID { get; set; }
|
||
|
public string ServiceName { get; set; }
|
||
|
public string ServiceTags { get; set; }
|
||
|
public string FontAwesomeIcon { get; set; }
|
||
|
public bool IsEnabled { get; set; }
|
||
|
}
|
||
|
|
||
|
public class ServicesDTOCollection : List<ServicesDTO> {}
|
||
|
}
|