Files
KioskApp/GtkSharp/Source/Samples/Sections/SectionAttribute.cs

14 lines
292 B
C#
Raw Normal View History

2024-09-15 22:40:48 +02:00
// This is free and unencumbered software released into the public domain.
// Happy coding!!! - GtkSharp Team
using System;
namespace Samples
{
class SectionAttribute : Attribute
{
public Type ContentType { get; set; }
public Category Category { get; set; }
}
}