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

10 lines
247 B
C#

namespace rockfishCore.Models
{
//Used to populate list routes for return
public class dtoNameIdActiveItem
{
public bool active { get; set; }
public long id { get; set; }
public string name { get; set; }
}
}