7 lines
198 B
C#
7 lines
198 B
C#
|
|
namespace LANCommander.Launcher.UI.Authenticate.Components;
|
||
|
|
|
||
|
|
public class AuthenticationFormState
|
||
|
|
{
|
||
|
|
public AuthenticationStage Stage { get; set; }
|
||
|
|
public string ServerAddress { get; set; }
|
||
|
|
}
|