10 lines
200 B
C#
10 lines
200 B
C#
|
|
namespace RIZO.Client.Entity
|
|||
|
|
{
|
|||
|
|
public class RoleEntity
|
|||
|
|
{
|
|||
|
|
public int roleId { get; set; }
|
|||
|
|
public string roleName { get; set; }
|
|||
|
|
public int state { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|