1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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(); }
- }
- }
- }
|