2018-01-25 23:13:36 +00:00
|
|
|
// This is free and unencumbered software released into the public domain.
|
|
|
|
// Happy coding!!! - GtkSharp Team
|
|
|
|
|
2018-01-20 19:09:27 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Samples
|
|
|
|
{
|
|
|
|
class SectionAttribute : Attribute
|
|
|
|
{
|
2018-01-27 20:47:02 +00:00
|
|
|
public Type ContentType { get; set; }
|
2018-01-20 19:09:27 +00:00
|
|
|
|
|
|
|
public Category Category { get; set; }
|
|
|
|
}
|
|
|
|
}
|