InstanceSettingDto
class InstanceSettingDto
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
internal class InstanceSettingDto
{
[JsonProperty(PropertyName = "ArtifactID")]
public int ArtifactId { get; set; }
[JsonProperty(PropertyName = "Description", NullValueHandling = NullValueHandling.Ignore)]
public string Description { get; set; }
[JsonProperty(PropertyName = "InitialValue", NullValueHandling = NullValueHandling.Ignore)]
public string InitialValue { get; set; }
[JsonProperty(PropertyName = "Machine", NullValueHandling = NullValueHandling.Ignore)]
public string Machine { get; set; }
[JsonProperty(PropertyName = "Name", NullValueHandling = NullValueHandling.Ignore)]
public string Name { get; set; }
[JsonProperty(PropertyName = "Section", NullValueHandling = NullValueHandling.Ignore)]
public string Section { get; set; }
[JsonProperty(PropertyName = "Value", NullValueHandling = NullValueHandling.Ignore)]
public string Value { get; set; }
public InstanceSettingDto()
{
ArtifactId = 0;
Description = null;
InitialValue = null;
Machine = null;
Name = null;
Section = null;
Value = null;
}
}
}