Files
WowUp/WowUp.Common/Models/Events/SessionEventArgs.cs
jliddev 3ce8a4d7b5 Bind client type dropdowns to the same value
Cache curse featured addons.
2020-08-18 14:59:05 -05:00

14 lines
267 B
C#

namespace WowUp.Common.Models.Events
{
public class SessionEventArgs
{
public SessionEventArgs(SessionState sessionState)
{
SessionState = sessionState;
}
public SessionState SessionState { get; set; }
}
}