using IRaCIS.Core.Domain.BaseModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IRaCIS.Core.Application.MassTransit.Consumer;
///
/// QC 影像质疑待处理
///
public class QCImageQuestionRecurringEvent :DomainEvent
{
public Guid TrialId { get; set; }
}
///
/// CRC 影像质疑
///
public class CRCImageQuestionRecurringEvent : DomainEvent
{
public Guid TrialId { get; set; }
}
///
/// 影像质控
///
public class ImageQCRecurringEvent : DomainEvent
{
public Guid TrialId { get; set; }
}
public class TestEvent
{
}