FileShareResponseBaseDto
using Newtonsoft.Json;
namespace Relativity.Transfer.Dto
{
public class FileShareResponseBaseDto
{
[JsonProperty(PropertyName = "State")]
public FileShareOperationState { get; set; }
[JsonProperty(PropertyName = "Error")]
public string { get; set; }
[JsonProperty(PropertyName = "ErrorCode")]
public FileShareOperationErrorCode { get; set; }
}
}