Files

18 lines
269 B
C#
Raw Permalink Normal View History

2024-01-19 17:25:56 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecureBank.Website.API
{
public enum APIMethodType
{
GET,
POST,
PUT,
2024-01-23 15:41:59 +01:00
PATCH,
2024-01-19 17:25:56 +01:00
DELETE
}
}