using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TeamAAS_VP.Attributes { [AttributeUsage(AttributeTargets.Field)] public class LocalizationAttribute : Attribute { public string ResourceName { get; set; } public Type ResourceType { get; set; } } }