6 lines
125 B
C#
6 lines
125 B
C#
|
|
namespace Nebula.Launcher.Models.Auth;
|
||
|
|
|
||
|
|
public sealed record AuthServerCredentials(
|
||
|
|
string Name,
|
||
|
|
string[] Servers
|
||
|
|
);
|