irc-netcore-api/IRaCIS.Core.Domain/_DomainEvent/ReviewerEvent.cs

33 lines
816 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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 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 List<Guid> EnrollIdList { get; set; }
}
}