FileOperationSourcePath
class FileOperationSourcePath
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
internal class FileOperationSourcePath
{
[JsonProperty(PropertyName = "Path")]
public string Path { get; set; }
[JsonProperty(PropertyName = "IsFile")]
public bool IsFile { get; set; }
}
}