mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
20 lines
472 B
C#
20 lines
472 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace ACE.DatLoader
|
|||
|
|
{
|
|||
|
|
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true)]
|
|||
|
|
public class DatFileTypeExtensionAttribute : Attribute
|
|||
|
|
{
|
|||
|
|
public string FileExtension { get; set; }
|
|||
|
|
|
|||
|
|
public DatFileTypeExtensionAttribute(string fileExtension)
|
|||
|
|
{
|
|||
|
|
this.FileExtension = fileExtension;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|