Files
irc-netcore-api/IRaCIS.Core.Domain/_DomainEvent/ReviewerEvent.cs
T
hang 03ac25835e
continuous-integration/drone/push Build is running
修改增加TrialId
2025-05-06 16:33:41 +08:00

36 lines
901 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using IRaCIS.Core.Domain.BaseModel;
using IRaCIS.Core.Domain.Share;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Domain._DomainEvent
{
/// <summary>
/// SPM审批通过,通知PM Enroll表
/// </summary>
public class ReviewerSPMApprovedEvent : DomainEvent
{
public Guid TrialId { get; set; }
public List<Guid> EnrollIdList { get; set; }
/// <summary>
/// 有SPM 会从 EnrollStatus.HasCommittedToCRO -> InviteIntoGroup
/// </summary>
//public EnrollStatus EnrollStatus { get; set; }
}
/// <summary>
/// PM 申请审批 Enroll表
/// </summary>
public class ReviewerPMApplyEvent : DomainEvent
{
public Guid TrialId { get; set; }
public List<Guid> EnrollIdList { get; set; }
}
}