using System;
using System.Collections.Generic;
using System.Linq;
namespace DM_Dal.Models
{
///
///
///
public class RoleDm
{
///
///
///
public int? Id { get; set; }
///
///
///
public string RoleName { get; set; }
///
///
///
//[SugarColumn(ColumnName="role_des" )]
//public string RoleDes { get; set; }
///
///
///
///[SugarColumn(ColumnName="permissions" )]
public List Permissions { get; set; }
///
///
///
public string MachineId { get; set; }
}
}