This commit is contained in:
@@ -3,9 +3,9 @@ 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;
|
||||
public bool active { get; set; }
|
||||
public bool lapsed { get; set; }
|
||||
public long id { get; set; }
|
||||
public string name { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -2,12 +2,12 @@ namespace rockfishCore.Models
|
||||
{
|
||||
//Used to populate list routes for return
|
||||
public class dtoLicenseListItem
|
||||
{
|
||||
public long id;
|
||||
public long created;
|
||||
public string regto;
|
||||
public bool fetched;
|
||||
public bool trial;
|
||||
{
|
||||
public long id { get; set; }
|
||||
public long created { get; set; }
|
||||
public string regto { get; set; }
|
||||
public bool fetched { get; set; }
|
||||
public bool trial { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -3,8 +3,8 @@ namespace rockfishCore.Models
|
||||
//Used to populate list routes for return
|
||||
public class dtoNameIdActiveItem
|
||||
{
|
||||
public bool active;
|
||||
public long id;
|
||||
public string name;
|
||||
public bool active { get; set; }
|
||||
public long id { get; set; }
|
||||
public string name { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -9,10 +9,10 @@ namespace rockfishCore.Models
|
||||
{
|
||||
children = new List<dtoNameIdItem>();
|
||||
}
|
||||
public long id;
|
||||
public string name;
|
||||
public List<dtoNameIdItem> children;
|
||||
public long id { get; set; }
|
||||
public string name { get; set; }
|
||||
public List<dtoNameIdItem> children { get; set; }
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -2,8 +2,8 @@ namespace rockfishCore.Models
|
||||
{
|
||||
//Used to populate list routes for return
|
||||
public class dtoNameIdItem
|
||||
{
|
||||
public long id;
|
||||
public string name;
|
||||
{
|
||||
public long id { get; set; }
|
||||
public string name { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user