<PackageReference Include="Relativity.Server.Transfer.SDK" Version="24000.0.1" />

SqlResourceServerDto

using Newtonsoft.Json; namespace Relativity.Transfer.Dto { internal class SqlResourceServerDto { [JsonProperty(PropertyName = "ArtifactID")] public int ArtifactId { get; set; } [JsonProperty(PropertyName = "BCPPath", NullValueHandling = NullValueHandling.Ignore)] public string BcpPath { get; set; } [JsonProperty(PropertyName = "Name")] public string Name { get; set; } [JsonProperty(PropertyName = "ServerType", NullValueHandling = NullValueHandling.Ignore)] public ResourceServerTypeRefDto ServerType { get; set; } [JsonProperty(PropertyName = "Version")] public string Version { get; set; } public SqlResourceServerDto() { ArtifactId = 0; BcpPath = null; Name = null; ServerType = null; Version = null; } } }