PathDto
class PathDto
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
[JsonObject(MemberSerialization.OptIn)]
internal class PathDto
{
[JsonProperty(PropertyName = "path")]
public string Path { get; set; }
public PathDto()
{
Initialize();
}
private void Initialize()
{
Path = null;
}
}
}