Added Invite, Notification and Activity
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
namespace PostFundManagement.Domain.Models;
|
||||
|
||||
public class Invite
|
||||
{
|
||||
public long Id { get; set; }
|
||||
|
||||
public long OrganisationId { get; set; }
|
||||
|
||||
public long InvitedOrganisationId { get; set; }
|
||||
|
||||
public long AwardId { get; set; }
|
||||
|
||||
public long ContractId { get; set; }
|
||||
|
||||
public Guid Recipient { get; set; }
|
||||
|
||||
public Guid CreatedBy { get; set; }
|
||||
|
||||
public Guid? UpdatedBy { get; set; }
|
||||
|
||||
public DateTime CreatedAt { get; set; }
|
||||
|
||||
public DateTime? UpdatedAt { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user