namespace Suspectus.Gandalf.Palantir.Data.MasterData.Atttibutes; [AttributeUsage(AttributeTargets.Field)] public class MasterRoleAttribute : Attribute { public string? OldKey { get; init; } public MasterRoleAttribute() {} public MasterRoleAttribute(string? oldKey) { OldKey = oldKey; } }