Files
VDownload/VDownload.Services/VDownload.Services.HttpClient/HttpMethodType.cs
2024-02-13 02:59:40 +01:00

18 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Services.HttpClient
{
public enum HttpMethodType
{
GET,
POST,
PUT,
PATCH,
DELETE
}
}