feat(core): add models for account

This commit is contained in:
Stevan Freeborn
2026-02-13 12:33:37 -06:00
parent 1a41c3c0b6
commit 23823a4c23
3 changed files with 45 additions and 0 deletions
@@ -0,0 +1,15 @@
namespace FiscalOS.Core.Accounts;
public abstract class AccountMetadata : Entity
{
private readonly string _type;
public string Type => _type;
public Guid AccountId { get; init; }
protected AccountMetadata(string type)
{
_type = type;
}
}