This commit is contained in:
he
2024-03-19 14:56:52 +08:00
parent 0cf5a88d63
commit 5aaa9043ff
2 changed files with 57 additions and 10 deletions
@@ -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; }
}