-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTab.cs
More file actions
30 lines (28 loc) · 926 Bytes
/
Tab.cs
File metadata and controls
30 lines (28 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
namespace Community.PowerToys.Run.Plugin.TabPort;
public class MutedInfo
{
public bool Muted { get; set; }
}
public class BrowserTab
{
public bool Active { get; set; }
public bool Audible { get; set; }
public bool AutoDiscardable { get; set; }
public bool Discarded { get; set; }
public string FavIconUrl { get; set; }
public int GroupId { get; set; }
public int Height { get; set; }
public bool Highlighted { get; set; }
public long Id { get; set; }
public bool Incognito { get; set; }
public int Index { get; set; }
public double LastAccessed { get; set; }
public MutedInfo MutedInfo { get; set; }
public bool Pinned { get; set; }
public bool Selected { get; set; }
public string Status { get; set; }
public string Title { get; set; }
public string Url { get; set; }
public int Width { get; set; }
public long WindowId { get; set; }
}