using System.ComponentModel.DataAnnotations.Schema; namespace Domain.Identity { public class Role : BaseEntity { public string Name { get; set; } } }