<PackageReference Include="Relativity.Transfer.Client" Version="7.0.8" />

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 SourceFileshareId { get; set; } [JsonProperty(PropertyName = "DestinationPath")] public string DestinationPath { get; } [JsonProperty(PropertyName = "DestinationFileshareId")] public int DestinationFileshareId { get; } } }