feat(core): added navigation property to institution for accounts

This commit is contained in:
Stevan Freeborn
2026-02-24 06:55:37 -06:00
parent d5b6fb3a38
commit 0815620028
@@ -6,6 +6,9 @@ public sealed class Institution : Entity
public string Name { get; init; } = string.Empty;
public InstitutionMetadata? Metadata { get; init; }
private readonly List<Account> _accounts = [];
public IEnumerable<Account> Accounts => _accounts;
private Institution()
{
}