Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BetterIServ/BetterIServ.Backend/Entities/DirectoryContent.cs
2023-04-16 14:28:34 +02:00

9 lines
271 B
C#

namespace BetterIServ.Backend.Entities;
public struct DirectoryContent {
public string Url { get; set; }
public string Name { get; set; }
public DateTime LastModified { get; set; }
public string Type { get; set; }
public long Size { get; set; }
}