mirror of
https://github.com/XCharts-Team/XCharts.git
synced 2026-05-16 05:10:12 +00:00
15 lines
339 B
C#
15 lines
339 B
C#
using System;
|
|
|
|
namespace XCharts
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class, AllowMultiple = true)]
|
|
public sealed class DefaultAnimationAttribute : Attribute
|
|
{
|
|
public readonly AnimationType type;
|
|
|
|
public DefaultAnimationAttribute(AnimationType handler)
|
|
{
|
|
this.type = handler;
|
|
}
|
|
}
|
|
} |