26 lines
583 B
C#
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; }
|
|
}
|
|
}
|