Light12306/ChatRoomServer.Www/Areas/Api/Models/OnlineCountModel.cs
2015-07-09 21:06:30 +08:00

16 lines
274 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ChatRoomServer.Www.Areas.Api.Models
{
public class OnlineCountModel
{
public string Id { get; set; }
public int Count { get; set; }
}
}