2025-11-21 02:12:50 +08:00

13 lines
254 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public enum RequestsMethods // 事件方法
{
GET = 1, // 获取
PUT = 3, // 修改
POST = 0, // 默认发送, 不需要任何返回
DELETE = 2, // 删除
}