mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-04-22 03:49:35 +08:00
9 lines
202 B
C#
9 lines
202 B
C#
namespace Oshima.FunGame.WebAPI.Models
|
|
{
|
|
public class BindQQ(string openid, long qq)
|
|
{
|
|
public string Openid { get; set; } = openid;
|
|
public long QQ { get; set; } = qq;
|
|
}
|
|
}
|