Files
familytree/myshare/API/FamilyTreeAPI/Models/Lookup.cs
T
2025-09-25 17:21:13 +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; }
}
}