修改
This commit is contained in:
@@ -209,7 +209,26 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
public Guid CTSeriesId { get; set; }
|
||||
public Guid PTSeriesId { get; set; }
|
||||
|
||||
public DicomSeriesDTO? CTSeries { get; set; }
|
||||
|
||||
public string TaskBlindName { get; set; } = string.Empty;
|
||||
|
||||
public StudyInfo? StudyInfo { get; set; }
|
||||
}
|
||||
|
||||
public class StudyInfo
|
||||
{
|
||||
public Guid StudyId { get; set; }
|
||||
public string StudyCode { get; set; } = String.Empty;
|
||||
public string Modalities { get; set; } = String.Empty;
|
||||
|
||||
public bool IsCriticalSequence { get; set; } = false;
|
||||
|
||||
public int SeriesCount { get; set; }
|
||||
public int InstanceCount { get; set; }
|
||||
|
||||
public bool IsDicom { get; set; } = true;
|
||||
|
||||
public DicomSeriesDTO? CTSeries { get; set; }
|
||||
|
||||
public DicomSeriesDTO? PTSeries { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user