LANCommander/LANCommander.Server.ImportExport/Legacy/Models/Archive.cs
2025-12-04 23:44:42 -06:00

13 lines
No EOL
316 B
C#

namespace LANCommander.Server.ImportExport.Legacy.Models;
internal class Archive : BaseModel
{
public string Changelog { get; set; }
public string ObjectKey { get; set; }
public string Version { get; set; }
public long CompressedSize { get; set; }
public long UncompressedSize { get; set; }
}