13 lines
210 B
C#
13 lines
210 B
C#
namespace Sockeye.Models
|
|
{
|
|
|
|
public class NameIdActiveItem
|
|
{
|
|
public long Id { get; set; }
|
|
public string Name { get; set; }
|
|
public bool? Active { get; set; }
|
|
|
|
}
|
|
|
|
}
|