mirror of
https://github.com/ysoftdevs/wapifuzz.git
synced 2026-03-12 05:21:41 +01:00
Init WFuzz state
This commit is contained in:
15
parser/Models/Response.cs
Normal file
15
parser/Models/Response.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
|
||||
namespace Models
|
||||
{
|
||||
public class Response
|
||||
{
|
||||
public int StatusCode { get; set; }
|
||||
public string Example { get; set; }
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"Status code: {StatusCode}{Environment.NewLine}Example: {Example}";
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user