// --------------------------------------------------------------------------------------------------------------------
//
// Copyright (c) 2014 OxyPlot contributors
//
// --------------------------------------------------------------------------------------------------------------------
namespace ExampleLibrary
{
using System;
///
/// Specifies the category for a class containing examples.
///
[AttributeUsage(AttributeTargets.Class)]
public class ExamplesAttribute : Attribute
{
///
/// Initializes a new instance of the class.
///
/// The category.
public ExamplesAttribute(string category = null)
{
this.Category = category;
}
///
/// Gets the category.
///
///
/// The category.
///
public string Category { get; private set; }
}
}