Files
2024-01-23 15:41:59 +01:00

18 lines
269 B
C#

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,
PATCH,
DELETE
}
}