16 lines
334 B
C#
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; }
|
|
}
|
|
}
|
|
|
|
|
|
|