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