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.
 
 
 
 

10 satır
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. }