21 lines
		
	
	
		
			583 B
		
	
	
	
		
			C#
		
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			583 B
		
	
	
	
		
			C#
		
	
	
namespace IRaCIS.Core.Application.Contracts.Dicom.DTO
 | 
						|
{
 | 
						|
    public sealed class DicomArchiveResult
 | 
						|
    {
 | 
						|
        public int ReceivedFileCount { get; set; }
 | 
						|
        public ICollection<string> ErrorFiles { get; set; }
 | 
						|
 | 
						|
        public ICollection<DicomStudyBasicDTO> ArchivedDicomStudies { get; set; }
 | 
						|
 | 
						|
        public Guid ReuploadNewStudyId { get; set; } = Guid.Empty;
 | 
						|
 | 
						|
        public DicomArchiveResult()
 | 
						|
        {
 | 
						|
            ReceivedFileCount = 0;
 | 
						|
            ErrorFiles = new List<string>();
 | 
						|
 | 
						|
            ArchivedDicomStudies = new List<DicomStudyBasicDTO>();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |