mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 12:15:42 +08:00
13 lines
293 B
C#
13 lines
293 B
C#
namespace BililiveRecorder.Web.Models.Rest.Files
|
|
{
|
|
public sealed class FileDto : FileLikeDto
|
|
{
|
|
/// <example>false</example>
|
|
public override bool IsFolder => false;
|
|
|
|
public long Size { get; set; }
|
|
|
|
public string Url { get; set; } = string.Empty;
|
|
}
|
|
}
|