Role.cs 322 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHECS.Model
{
    public class Role : BaseModel
    {
        public string RoleName { get; set; }
        public string Remark { get; set; }
        public bool Disable { get; set; }
    }
}