mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-04 04:16:19 +00:00
16 lines
451 B
C#
16 lines
451 B
C#
namespace TUI.Domain;
|
|
|
|
public record Project(int Id, string Name, IEnumerable<string> Tags, Hub Hub)
|
|
{
|
|
private IEnumerable<Dependency> Dependencies => new List<Dependency>();
|
|
|
|
public bool IsPublicNetwork => Tags.Contains("public");
|
|
|
|
public bool HasAuth => Tags.Contains("auth");
|
|
|
|
public bool SeoDependent => Tags.Contains("seo");
|
|
|
|
public bool Legacy => Tags.Contains("legacy");
|
|
|
|
public bool Freeze => Tags.Contains("freeze");
|
|
} |