This commit is contained in:
2018-07-19 19:21:01 +00:00
parent ff6434f905
commit 10ded2681f
4 changed files with 54 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
namespace rockfishCore.Models
{
//Used to populate list routes for return
public class dtoCustomerListItem
{
public bool active;
public bool lapsed;
public long id;
public string name;
}
}