0
0
mirror of https://github.com/sp-tarkov/launcher.git synced 2025-02-13 09:30:45 -05:00

51 lines
1.2 KiB
C#

/* ConnectServerModel.cs
* License: NCSA Open Source License
*
* Copyright: SPT
* AUTHORS:
*/
using System.ComponentModel;
namespace SPT.Launcher.Models.Launcher
{
public class ConnectServerModel : INotifyPropertyChanged
{
private string _InfoText;
public string InfoText
{
get => _InfoText;
set
{
if (_InfoText != value)
{
_InfoText = value;
RaisePropertyChanged(nameof(InfoText));
}
}
}
private bool _ConnectionFailed;
public bool ConnectionFailed
{
get => _ConnectionFailed;
set
{
if(_ConnectionFailed != value)
{
_ConnectionFailed = value;
RaisePropertyChanged(nameof(ConnectionFailed));
}
}
}
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void RaisePropertyChanged(string property)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(property));
}
}
}