feat: add Member and FamilyUnit entities

This commit is contained in:
Chris Chen
2026-05-27 13:49:50 -07:00
parent 820ca6981c
commit cd5413125d
2 changed files with 43 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
using ROLAC.API.Entities.Base;
namespace ROLAC.API.Entities;
public class FamilyUnit : AuditableEntity
{
public int Id { get; set; }
public string? FamilyName_en { get; set; }
public string? FamilyName_zh { get; set; }
public string? Notes { get; set; }
}