2026-02-12 16:19:21 -06:00
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|