DeleteFileRequestDto
class DeleteFileRequestDto
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
namespace Relativity.Transfer.Dto
{
internal class DeleteFileRequestDto
{
[JsonProperty(PropertyName = "SourcePaths")]
public IEnumerable<FileOperationSourcePath> SourcePaths { get; set; }
[JsonProperty(PropertyName = "CorrelationId")]
public Guid CorrelationId { get; set; }
[JsonProperty(PropertyName = "SourceFileshareId")]
public int { get; set; }
[JsonProperty(PropertyName = "DestinationPath")]
public string DestinationPath { get; }
[JsonProperty(PropertyName = "DestinationFileshareId")]
public int { get; }
}
}