mirror of
https://github.com/sp-tarkov/patcher.git
synced 2025-02-13 08:10:47 -05:00
20 lines
437 B
C#
20 lines
437 B
C#
using ReactiveUI;
|
|
|
|
namespace PatchClient.ViewModels
|
|
{
|
|
public class MessageViewModel : ViewModelBase
|
|
{
|
|
private string _InfoText = "";
|
|
public string InfoText
|
|
{
|
|
get => _InfoText;
|
|
set => this.RaiseAndSetIfChanged(ref _InfoText, value);
|
|
}
|
|
|
|
public MessageViewModel(IScreen Host, string Message) : base(Host)
|
|
{
|
|
InfoText = Message;
|
|
}
|
|
}
|
|
}
|