mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-23 17:55:27 +00:00
14 lines
292 B
C#
14 lines
292 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 Type ContentType { get; set; }
|
|
|
|
public Category Category { get; set; }
|
|
}
|
|
} |