using UnityEngine;

namespace FVS
{
    public class LocalizedHeaderAttribute : PropertyAttribute
    {
        public string Key { get; }
        public LocalizedHeaderAttribute(string key) { Key = key; }
    }
}
