Files
familytree/API/FamilyTreeAPI/Entities/LookupDto.cs
T
2025-08-10 22:01:36 +10:00

17 lines
410 B
C#

namespace FamilyTreeAPI.Entities;
public class LookupDto
{
public int Id { get; set; } = 0;
public string CodeId { get; set; }
public string Description { get; set; }
}
public class LookupEditDto
{
public int Id { get; set; } = 0;
public string CodeId { get; set; }
public string Description { get; set; }
public bool Active { get; set; }
public string Type { get; set; }
}