irc-netcore-api/IRaCIS.Core.Application/Service/ImageAndDoc/DTO/SCPServiceViewModel.cs

22 lines
487 B
C#

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<string> CalledAEList { get; set; }
public string ServerPort { get; set; }
}
}