11 lines
288 B
C#
11 lines
288 B
C#
namespace rockfishCore.Models
|
|
{
|
|
//Used to populate list routes for return
|
|
public class dtoCustomerListItem
|
|
{
|
|
public bool active { get; set; }
|
|
public bool lapsed { get; set; }
|
|
public long id { get; set; }
|
|
public string name { get; set; }
|
|
}
|
|
} |