Files
TxSearchApi/Datamodels/Lookups/LookupCategory.cs
Roland Fieger 5e15db793b first things
2021-09-22 12:37:40 +02:00

12 lines
315 B
C#

using System.Collections.Generic;
namespace Datamodels.Lookups
{
public sealed class LookupCategory
{
public long Id { get; set; }
public string CategoryName { get; set; }
public bool IsActive { get; set; } = true;
public List<LookupValue> LookupValues { get; set; }
}
}