25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

2 hafta önce
123456789
  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. }