20 lines
241 B
C#
20 lines
241 B
C#
using System;
|
|
|
|
public class RoleInfo
|
|
{
|
|
private int _id;
|
|
private string _name;
|
|
|
|
public int Id
|
|
{
|
|
get { return _id; }
|
|
set { _id = value; }
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return _name; }
|
|
set { _name = value; }
|
|
}
|
|
}
|