8 lines
187 B
C#
8 lines
187 B
C#
namespace RdtClient.Data.Models.DebridClient;
|
|
|
|
public class DebridClientAvailableFile
|
|
{
|
|
public String Filename { get; set; } = default!;
|
|
|
|
public Int64 Filesize { get; set; }
|
|
}
|