10 lines
247 B
C#
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; }
|
|
}
|
|
} |