using System.Collections.Generic; namespace IRaCIS.Core.Application.Contracts.Dicom.DTO { public sealed class DicomArchiveResult { public int ReceivedFileCount { get; set; } public ICollection ErrorFiles { get; set; } public ICollection ArchivedDicomStudies { get; set; } public DicomArchiveResult() { ReceivedFileCount = 0; ErrorFiles = new List(); ArchivedDicomStudies = new List(); } } }