From 081562002877dc56a4f5e36812a0afcd5c40a737 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Tue, 24 Feb 2026 06:51:21 -0600 Subject: [PATCH] feat(core): added navigation property to institution for accounts --- src/FiscalOS.Core/Accounts/Institution.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/FiscalOS.Core/Accounts/Institution.cs b/src/FiscalOS.Core/Accounts/Institution.cs index 22472a2..1f9f0c9 100644 --- a/src/FiscalOS.Core/Accounts/Institution.cs +++ b/src/FiscalOS.Core/Accounts/Institution.cs @@ -6,6 +6,9 @@ public sealed class Institution : Entity public string Name { get; init; } = string.Empty; public InstitutionMetadata? Metadata { get; init; } + private readonly List _accounts = []; + public IEnumerable Accounts => _accounts; + private Institution() { }