/*******************************************************************************
* Copyright(c) 2014 DongkeSoft All rights reserved. / Confidential
* 类的信息:
* 1.程序名称:FunRightResultEntity.cs
* 2.功能描述:保存用户功能权限后返回的实体类
* 编辑履历:
* 作者 日期 版本 修改内容
* 张国印 2014/09/17 1.00 新建
*******************************************************************************/
using System.Data;
using System.Runtime.Serialization;
namespace Dongke.IBOSS.PRD.WCF.DataModels
{
[DataContract]
public class FunRightResultEntity
{
///
/// 操作状态
///
[DataMember]
public int OperationStatus
{
get;
set;
}
///
/// 用户没有权限的功能列表
///
[DataMember]
public string LicenseFunctions
{
get;
set;
}
}
}