- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace CallCenterApi.Interface.Models.Input
- {
- public class RoleInput
- {
- public int RoleId { get; set; } = 0;
- public string RoleName { get; set; } = "";
- public string Code { get; set; } = "";
- public string RoleRemark { get; set; } = "";
- }
- }
|