using System; namespace RdtClient.Data.Models.TorrentClient { public class TorrentClientFile { public Int64 Id { get; set; } public String Path { get; set; } public Int64 Bytes { get; set; } public Boolean Selected { get; set; } } }