2023-01-06 00:37:13 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2023-01-08 18:09:57 +00:00
|
|
|
|
namespace LANCommander.PlaynitePlugin.ViewModels
|
2023-01-06 00:37:13 +00:00
|
|
|
|
{
|
|
|
|
|
internal class Authentication
|
|
|
|
|
{
|
2023-01-07 18:34:12 +00:00
|
|
|
|
public string ServerAddress { get; set; }
|
2023-01-06 00:37:13 +00:00
|
|
|
|
public string UserName { get; set; }
|
|
|
|
|
public string Password { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|