LANCommander/LANCommander.Server/Models/OrphanedFile.cs

10 lines
214 B
C#
Raw Permalink Normal View History

2024-08-04 18:44:33 -05:00
namespace LANCommander.Server.Models
2023-09-01 11:40:29 -05:00
{
public class OrphanedFile
{
public string Path { get; set; }
public long Size { get; set; }
public DateTime CreatedOn { get; set; }
}
}