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