事件存储准备

This commit is contained in:
2024-10-10 14:24:56 +08:00
parent 2527d709fa
commit 2c1300acb4
13 changed files with 18205 additions and 12 deletions
@@ -0,0 +1,27 @@
using IRaCIS.Core.Domain.BaseModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Domain
{
public class UserSiteSurveySubmitedEvent:DomainEvent
{
public Guid TrialSiteSurveyId { get; set; }
}
public class SiteSurveySPMSubmitedEvent : DomainEvent
{
public Guid TrialSiteSurveyId { get; set; }
}
public class SiteSurverRejectedEvent : DomainEvent
{
public Guid TrialSiteSurveyId { get; set; }
}
}