mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-20 13:58:49 -04:00
12 lines
278 B
C#
12 lines
278 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 bool UpdaterReady { get; set; }
|
|
}
|
|
}
|