using System; using System.Collections.Generic; using System.Text; namespace InABox.Core { /// /// Allows for customising the security tokens for entity actions, overriding the for /// a given . /// [AttributeUsage(AttributeTargets.Class)] public class EntitySecurityAttribute : Attribute { public Type? CanView { get; set; } public Type? CanEdit { get; set; } public Type? CanDelete { get; set; } } }