feat: add Member and FamilyUnit entities
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
Reference in New Issue
Block a user