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

FileShareResourceServerDto

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