Files
Argus/Domain/AppRelease.cs
T
Курнат Андрей 5f80c4bf6a Initial Argus web catalog
2026-06-20 19:55:11 +03:00

33 lines
822 B
C#

namespace Argus.Domain;
public sealed class AppRelease
{
public Guid Id { get; set; }
public Guid CatalogAppId { get; set; }
public CatalogApp CatalogApp { get; set; } = null!;
public string Version { get; set; } = string.Empty;
public string Channel { get; set; } = "stable";
public string Platform { get; set; } = "generic";
public string PackageKind { get; set; } = "binary";
public string OriginalFileName { get; set; } = string.Empty;
public string StoredRelativePath { get; set; } = string.Empty;
public string ContentType { get; set; } = "application/octet-stream";
public long PackageSizeBytes { get; set; }
public string Sha256 { get; set; } = string.Empty;
public string? Notes { get; set; }
public DateTimeOffset PublishedAt { get; set; }
}