Initial Argus web catalog
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
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>();
|
||||
}
|
||||
Reference in New Issue
Block a user