InstanceSetting
namespace Relativity.Transfer
{
public class InstanceSetting
{
public int ArtifactId { get; set; }
public string Description { get; set; }
public string InitialValue { get; set; }
public string Machine { get; set; }
public string Name { get; set; }
public string Section { get; set; }
public string Value { get; set; }
public InstanceSetting()
{
ArtifactId = 0;
Description = null;
InitialValue = null;
Machine = null;
Name = null;
Section = null;
Value = null;
}
}
}