16 lines
348 B
C#
16 lines
348 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
using static SystemX.Product.CP.TRA.Commons;
|
|
|
|
namespace SystemX.Product.ALIS.Interface
|
|
{
|
|
interface IUserControlSubscribe
|
|
{
|
|
void setLoginStateNotice(LoginAccessLevel CurrentAccessLevel, bool bLoginState);
|
|
}
|
|
}
|