feat(core): add models for institution

This commit is contained in:
Stevan Freeborn
2026-02-12 16:19:21 -06:00
parent 4164e53113
commit d80ba9b24c
4 changed files with 51 additions and 2 deletions
@@ -0,0 +1,15 @@
namespace FiscalOS.Core.Accounts;
public abstract class InstitutionMetadata : Entity
{
private readonly string _type;
public string Type => _type;
public Guid InstitutionId { get; init; }
protected InstitutionMetadata(string type)
{
_type = type;
}
}