9 lines
No EOL
235 B
C#
9 lines
No EOL
235 B
C#
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; }
|
|
} |