11 lines
214 B
C#
11 lines
214 B
C#
using System;
|
|
|
|
namespace RdtClient.Data.Models.TorrentClient
|
|
{
|
|
public class TorrentClientAvailableFile
|
|
{
|
|
public String Filename { get; set; }
|
|
|
|
public Int64 Filesize { get; set; }
|
|
}
|
|
}
|