2023-03-03 19:25:33 +00:00
|
|
|
/* ConnectServerModel.cs
|
|
|
|
* License: NCSA Open Source License
|
|
|
|
*
|
2024-05-21 20:15:19 +01:00
|
|
|
* Copyright: SPT
|
2023-03-03 19:25:33 +00:00
|
|
|
* AUTHORS:
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2024-09-02 07:53:58 +00:00
|
|
|
using SPT.Launcher.Utilities;
|
2023-03-03 19:25:33 +00:00
|
|
|
|
2024-05-21 20:15:19 +01:00
|
|
|
namespace SPT.Launcher.Models.Launcher
|
2023-03-03 19:25:33 +00:00
|
|
|
{
|
2024-09-02 07:53:58 +00:00
|
|
|
public class ConnectServerModel : NotifyPropertyChangedBase
|
2023-03-03 19:25:33 +00:00
|
|
|
{
|
2024-09-02 07:53:58 +00:00
|
|
|
private string _infoText;
|
2023-03-03 19:25:33 +00:00
|
|
|
public string InfoText
|
|
|
|
{
|
2024-09-02 07:53:58 +00:00
|
|
|
get => _infoText;
|
|
|
|
set => SetProperty(ref _infoText, value);
|
2023-03-03 19:25:33 +00:00
|
|
|
}
|
|
|
|
|
2024-09-02 07:53:58 +00:00
|
|
|
private bool _connectionFailed;
|
2023-03-03 19:25:33 +00:00
|
|
|
public bool ConnectionFailed
|
|
|
|
{
|
2024-09-02 07:53:58 +00:00
|
|
|
get => _connectionFailed;
|
|
|
|
set => SetProperty(ref _connectionFailed, value);
|
2023-03-03 19:25:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|