using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Model.Dto { public class RoleDto : BaseDto { public RoleDto() { } private int id; public int Id { get { return id; } set { id = value; OnPropertyChanged(); } } private string name; public string Name { get { return name; } set { name = value; OnPropertyChanged(); } } public string description; public string Description { get { return description; } set { description = value; OnPropertyChanged(); } } } }