lampac/Shared/Models/Browser/KeepopenPage.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

28 lines
590 B
C#

using Microsoft.Playwright;
namespace Shared.Models.Browser
{
public class KeepopenPage
{
#region Firefox
public IPage page { get; set; }
public bool busy { get; set; }
public DateTime lockTo { get; set; }
#endregion
public IBrowserContext context { get; set; }
public DateTime lastActive { get; set; } = DateTime.Now;
public DateTime create { get; set; } = DateTime.Now;
public string plugin { get; set; }
public (string ip, string username, string password) proxy { get; set; }
}
}