Ryujinx-GtkSharp/Source/Samples/Sections/SectionAttribute.cs

11 lines
176 B
C#
Raw Normal View History

2018-01-20 20:09:27 +01:00
using System;
namespace Samples
{
class SectionAttribute : Attribute
{
public string Name { get; set; }
public Category Category { get; set; }
}
}