ResourceServerDto
class ResourceServerDto
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
[JsonObject(MemberSerialization.OptIn)]
internal class ResourceServerDto
{
[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; }
}
}