添加项目文件。
This commit is contained in:
15
Models/ResultResponse.cs
Normal file
15
Models/ResultResponse.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace WebAppServer1.Models
|
||||
{
|
||||
[MessagePackObject]
|
||||
public class SearchFriendsResultResponse
|
||||
{
|
||||
[Key("success")]
|
||||
public bool success { get; set; }
|
||||
[Key("username")]
|
||||
public string username { get; set; }
|
||||
[Key("userid")]
|
||||
public int userid { get; set; }
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user