chris ec7af67c9d Add MasterAuthorities, MasterRoles, and MasterGroups entities
Introduce MasterAuthorities, MasterRoles, and MasterGroups as extensions to centralize authority, role, and group definitions. Added associated attributes for better metadata handling, enabling streamlined retrieval and relationship management.
2025-06-01 03:25:33 +02:00

14 lines
322 B
C#

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;
}
}