using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FLY.Thick.Base.Common;
using System.ComponentModel;
namespace FLY.Thick.Base.IService
{
///
/// 密码服务
///
public interface IPasswordService:INotifyPropertyChanged
{
///
/// 界面授权列表
///
List UiLvs { get; set; }
///
/// 密码列表
///
List PWs { get; set; }
///
/// 密码队列修改后应用
///
void Apply();
}
}