mirror of
https://github.com/dnwSilver/tld.git
synced 2025-04-20 12:06:19 +00:00
11 lines
243 B
C#
11 lines
243 B
C#
|
using System.Runtime.Serialization;
|
||
|
using YamlDotNet.Serialization;
|
||
|
|
||
|
namespace TUI.Providers.Dependencies;
|
||
|
|
||
|
[DataContract]
|
||
|
[YamlSerializable]
|
||
|
public class DependenciesDto
|
||
|
{
|
||
|
[DataMember] [YamlMember] public StackDto[] Stacks { get; set; }
|
||
|
}
|