BotSharp/src/Infrastructure/BotSharp.Abstraction/Browsing/Models/WebPageResponseData.cs
2024-08-13 22:44:53 -05:00

11 lines
345 B
C#

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;
}