12 lines
288 B
C#
12 lines
288 B
C#
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; }
|
|
}
|
|
}
|