Implemented models
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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 int Type { get; set; }
|
||||
|
||||
public ActivityStatus Status { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user