FIC_Solar/SolarPower/Models/Role.cs
2021-06-09 15:03:24 +08:00

26 lines
583 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace SolarPower.Models.Role
{
public class Role : Created
{
public int Id { get; set; }
public byte Deleted { get; set; }
public int CompanyId { get; set; }
public string Name { get; set; }
public byte Layer { get; set; }
}
/// <summary>
/// 角色下拉式選單
/// </summary>
public class RoleSelectItemList
{
public string Text { get; set; }
public string Value { get; set; }
}
}