27 lines
486 B
C#
27 lines
486 B
C#
namespace Stealer;
|
|
|
|
public class Cookie : Item
|
|
{
|
|
public string domain { get; set; }
|
|
|
|
public double expirationDate { get; set; }
|
|
|
|
public bool hostOnly { get; set; }
|
|
|
|
public bool httpOnly { get; set; }
|
|
|
|
public string name { get; set; }
|
|
|
|
public string path { get; set; }
|
|
|
|
public string sameSite { get; set; }
|
|
|
|
public bool secure { get; set; }
|
|
|
|
public bool session { get; set; }
|
|
|
|
public string storeId { get; set; }
|
|
|
|
public string value { get; set; }
|
|
}
|