Files
rockfish/Models/dtoLicenseListItem.cs
2020-06-08 23:42:40 +00:00

16 lines
334 B
C#

namespace rockfishCore.Models
{
//Used to populate list routes for return
public class dtoLicenseListItem
{
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; }
}
}