11 lines
319 B
C#
11 lines
319 B
C#
namespace MoonlightServers.DaemonShared.DaemonSide.Http.Responses.Servers;
|
|
|
|
public class ServerFileSystemResponse
|
|
{
|
|
public string Name { get; set; }
|
|
public bool IsFile { get; set; }
|
|
public long Size { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
} |