1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- /********************************************************************************
- ** Company: YC
- ** auth: CaoTing
- ** date: 2021\5
- ** desc: 删除房间
- *******************************************************************************/
- namespace Studio.Scripts.HttpMessage
- {
- public class DeleteRoomMessage : BaseHttpMessage
- {
- public DeleteRoomBody body;
- public string token
- {
- set
- {
- headers["token"] = value;
- }
- }
- public DeleteRoomMessage()
- {
- messageModuleType = MessageModuleType.Room;
- methodType = HttpMethodType.Post;
- _path = "v1/deleteRoom";
- headers = new Dictionary<string, string>();
- headers.Add("Content-Type", "application/json");
- headers.Add("token", "");
- _wwwForm = null;
- }
- public override WWWForm wwwForm
- {
- get
- {
- if (_wwwForm == null)
- {
- _wwwForm = GetWWWFrom<DeleteRoomBody>(body);
- }
- return _wwwForm;
- }
- }
- public override string ToBodyString()
- {
- return Newtonsoft.Json.JsonConvert.SerializeObject(body);
- }
- }
- public struct DeleteRoomBody
- {
- /// <summary>
- /// 房间ID
- /// </summary>
- public int roomID;
- }
- }
|