using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace IRaCIS.Core.Application.Contracts { public class DicomSCPServiceOption { public bool IsSupportThirdService { get; set; } public string ThirdSearchPacsAE { get; set; } public string ThirdCallningAE { get; set; } public List CalledAEList { get; set; } public string ServerPort { get; set; } } }