You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
593 B
C#
30 lines
593 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Models
|
|
{
|
|
public class JsonUserGroupEntity
|
|
{
|
|
#region 私有成员
|
|
private List<JsonUserEntity> _json_User_entities;
|
|
#endregion
|
|
|
|
public JsonUserGroupEntity()
|
|
{
|
|
}
|
|
|
|
#region
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public List<JsonUserEntity> JsonUserEntities
|
|
{
|
|
get { return _json_User_entities; }
|
|
set { _json_User_entities = value; }
|
|
}
|
|
#endregion
|
|
}
|
|
}
|