1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using LitJson;
- public class ShowCommentData
- {
- public int id;
- public string content;
- public AccountData accountData;
- public ShowCommentData(JsonData data)
- {
- id = (int) data["id"];
- content = (string) data["content"];
- long playerId = (long) data["user_id"];
- string nickname = (string) data["nickname"];
- accountData = new AccountData(nickname, playerId.ToString());
- }
- }
- public class ShowComment : BaseComment
- {
-
- }
|