10 lines
82 B
C#
10 lines
82 B
C#
|
|
|
|
namespace PostmanCloneLibrary;
|
|
|
|
public enum HttpAction
|
|
{
|
|
GET,
|
|
POST
|
|
}
|