2023-01-04 20:31:02 -06:00
|
|
|
|
namespace LANCommander.SDK.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Archive : BaseModel
|
|
|
|
|
|
{
|
|
|
|
|
|
public string Changelog { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string ObjectKey { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
|
2024-10-12 12:04:00 -05:00
|
|
|
|
public long CompressedSize { get; set; }
|
|
|
|
|
|
public long UncompressedSize { get; set; }
|
2023-01-04 20:31:02 -06:00
|
|
|
|
}
|
|
|
|
|
|
}
|