12 lines
281 B
C#
12 lines
281 B
C#
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; }
|
|
}
|
|
}
|