14 lines
329 B
C#
14 lines
329 B
C#
namespace LANCommander.SDK.Models
|
|
{
|
|
public 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; }
|
|
}
|
|
}
|