mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
13 lines
326 B
C#
13 lines
326 B
C#
using WowUp.Common.Enums;
|
|
|
|
namespace WowUp.Common.Models
|
|
{
|
|
public class SessionState : ISessionState
|
|
{
|
|
public WowClientType SelectedClientType { get; set; }
|
|
public string StatusText { get; set; }
|
|
public string ContextText { get; set; }
|
|
public bool UpdaterReady { get; set; }
|
|
}
|
|
}
|