BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/WebPageResponseData.cs

11 lines
345 B
C#
Raw Normal View History

2024-08-14 03:44:53 +00:00
namespace BotSharp.Abstraction.Browsing.Models;
public class WebPageResponseData
{
public string Url { get; set; } = null!;
public string PostData { get; set; } = null!;
public string ResponseData { get; set; } = null!;
public bool ResponseInMemory { get; set; }
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
}