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

27 lines
648 B
C#

namespace Argus.Domain;
public sealed class CatalogApp
{
public Guid Id { get; set; }
public string Slug { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string Summary { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public string? RepositoryUrl { get; set; }
public string? HomepageUrl { get; set; }
public bool IsListed { get; set; } = true;
public DateTimeOffset CreatedAt { get; set; }
public DateTimeOffset UpdatedAt { get; set; }
public ICollection<AppRelease> Releases { get; set; } = new List<AppRelease>();
}