Files
2025-08-10 22:01:36 +10:00

15 lines
343 B
C#

using System;
using System.Collections.Generic;
namespace FamilyTreeAPI.Models
{
public partial class Lookup
{
public int Id { get; set; }
public string? Code { get; set; }
public string? Description { get; set; }
public string? Type { get; set; }
public bool? Lactive { get; set; }
}
}