HttpMethod.cs 167 B

1234567891011
  1. using UnityEngine;
  2. using System.Collections;
  3. public class HttpMethod
  4. {
  5. public const string POST = "POST";
  6. public const string GET = "GET";
  7. }