PathsDto
class PathsDto
using Newtonsoft.Json;
using System.Collections.Generic;
namespace Relativity.Transfer.Dto
{
[JsonObject(MemberSerialization.OptIn)]
internal class PathsDto
{
[JsonProperty(PropertyName = "paths")]
public List<PathDto> Paths { get; set; }
public PathsDto()
{
Initialize();
}
private void Initialize()
{
Paths = new List<PathDto>();
}
}
}