選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

LuPermissionArgAttribute.cs 260B

12345678910
  1. using System;
  2. namespace Luticate2.Auth.Attributes
  3. {
  4. [AttributeUsage(AttributeTargets.Parameter, AllowMultiple = true, Inherited = true)]
  5. public class LuPermissionArgAttribute : Attribute
  6. {
  7. public object Id { get; set; }
  8. }
  9. }