Files
2026-08-15 15:39:20 +02:00

20 lines
418 B
C#

namespace PostFundManagement.Domain.Models;
public class Organisation
{
public long Id { get; set; }
public Guid CreatedBy { get; set; }
public DateTime CreatedAt { get; set; }
public string? RegistrationNo { get; set; }
public string? Name { get; set; }
public string? Email { get; set; }
public OrganisationType Type { get; set; }
public ActivityStatus Status { get; set; }
}