✨
This commit is contained in:
18
StopShopping.Services/Models/Resp/AntiForgeryToken.cs
Normal file
18
StopShopping.Services/Models/Resp/AntiForgeryToken.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
namespace StopShopping.Services.Models.Resp;
|
||||
|
||||
/// <summary>
|
||||
/// csrf token
|
||||
/// </summary>
|
||||
public class AntiForgeryToken
|
||||
{
|
||||
/// <summary>
|
||||
/// csrf请求头
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public string? HeaderName { get; set; }
|
||||
/// <summary>
|
||||
/// csrf token
|
||||
/// </summary>
|
||||
/// <value></value>
|
||||
public string? Token { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user