IPasswordService.cs 665 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9
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
{
潘栩锋's avatar
潘栩锋 committed
10 11 12
    /// <summary>
    /// 密码服务
    /// </summary>
潘栩锋's avatar
潘栩锋 committed
13 14 15
    public interface IPasswordService:INotifyPropertyChanged
    {
        /// <summary>
潘栩锋's avatar
潘栩锋 committed
16
        /// 界面授权列表
潘栩锋's avatar
潘栩锋 committed
17
        /// </summary>
潘栩锋's avatar
潘栩锋 committed
18
        List<UiLvCell> UiLvs { get; set; }
潘栩锋's avatar
潘栩锋 committed
19

潘栩锋's avatar
潘栩锋 committed
20 21 22 23
        /// <summary>
        /// 密码列表
        /// </summary>
        List<PasswordCell> PWs { get; set; }
潘栩锋's avatar
潘栩锋 committed
24 25 26 27 28 29

        /// <summary>
        /// 密码队列修改后应用
        /// </summary>
        void Apply();
    }
潘栩锋's avatar
潘栩锋 committed
30 31
   

潘栩锋's avatar
潘栩锋 committed
32
}