GtkSharp/Source/Samples/Sections/SectionAttribute.cs
2018-01-26 00:13:36 +01:00

14 lines
287 B
C#

// This is free and unencumbered software released into the public domain.
// Happy coding!!! - GtkSharp Team
using System;
namespace Samples
{
class SectionAttribute : Attribute
{
public string Name { get; set; }
public Category Category { get; set; }
}
}