mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-15 09:36:18 +00:00
21 lines
382 B
C#
21 lines
382 B
C#
|
using System.Runtime.CompilerServices;
|
||
|
using YamlDotNet.Serialization;
|
||
|
|
||
|
|
||
|
namespace TUI.Domain;
|
||
|
|
||
|
[YamlSerializable]
|
||
|
public class Project
|
||
|
{
|
||
|
[YamlMember]
|
||
|
public string Icon { get; set; }
|
||
|
|
||
|
[YamlMember]
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
[YamlMember]
|
||
|
public Dependency[] Dependencies { get; set; }
|
||
|
|
||
|
[YamlMember]
|
||
|
public IList<Source> Sources { get; set; }
|
||
|
}
|