ace/Source/ACE.DatLoader/DatDatabaseTypeAttribute.cs

16 lines
312 B
C#
Raw Permalink Normal View History

using System;
namespace ACE.DatLoader
{
[AttributeUsage(AttributeTargets.Field)]
public class DatDatabaseTypeAttribute : Attribute
{
public DatDatabaseType Type { get; set; }
public DatDatabaseTypeAttribute(DatDatabaseType type)
{
Type = type;
}
}
}