mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
14 lines
281 B
C#
14 lines
281 B
C#
|
using System;
|
||
|
|
||
|
namespace BililiveRecorder.Web.Models.Rest.Files
|
||
|
{
|
||
|
public abstract class FileLikeDto
|
||
|
{
|
||
|
public abstract bool IsFolder { get; }
|
||
|
|
||
|
public string Name { get; set; } = string.Empty;
|
||
|
|
||
|
public DateTimeOffset LastModified { get; set; }
|
||
|
}
|
||
|
}
|