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

10 行
178 B

  1. using System.ComponentModel.DataAnnotations.Schema;
  2. namespace Domain.Identity
  3. {
  4. public class Role : BaseEntity
  5. {
  6. public string Name { get; set; }
  7. }
  8. }