forked from powerfun/udpservice
15 lines
278 B
C#
15 lines
278 B
C#
using OnlineUserPool.Model;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace OnlineUserPool.Hander
|
|
{
|
|
interface IHandle
|
|
{
|
|
List<MsgModel> GetVirtualUserData();
|
|
|
|
void RemoveEndAndAddNewVirtualUser(int customerCount);
|
|
}
|
|
}
|