mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-20 13:58:49 -04:00
14 lines
267 B
C#
14 lines
267 B
C#
namespace WowUp.Common.Models.Events
|
|
{
|
|
public class SessionEventArgs
|
|
{
|
|
public SessionEventArgs(SessionState sessionState)
|
|
{
|
|
SessionState = sessionState;
|
|
}
|
|
|
|
public SessionState SessionState { get; set; }
|
|
|
|
}
|
|
}
|