mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-27 15:36:18 +00:00
12 lines
350 B
C#
12 lines
350 B
C#
|
namespace TUI.Domain;
|
||
|
|
||
|
public record Project(int Id, string Name, IEnumerable<string> Tags, string 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");
|
||
|
}
|