Ryujinx-GtkSharp/Source/Samples/SectionAttribute.cs
2018-01-20 20:09:27 +01:00

11 lines
176 B
C#

using System;
namespace Samples
{
class SectionAttribute : Attribute
{
public string Name { get; set; }
public Category Category { get; set; }
}
}