Import YamlDotNet.

This commit is contained in:
2022-12-12 22:23:49 +08:00
parent f559cea826
commit 1477e907e6
462 changed files with 27142 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
namespace YamlDotNet.Samples.Helpers
{
/// <summary>
/// Marks a test as being a code sample.
/// </summary>
internal class SampleAttribute : System.Attribute
{
public string DisplayName { get; set; }
public string Description { get; set; }
}
}