17 lines
239 B
C#
17 lines
239 B
C#
using System;
|
|
|
|
namespace Zhaizj.Framework.Common.Security {
|
|
|
|
/// <summary>
|
|
/// 可存储权限数据的对象接口
|
|
/// </summary>
|
|
public interface ISecurity {
|
|
|
|
String Security { get; set; }
|
|
Result update();
|
|
|
|
}
|
|
|
|
}
|
|
|