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