mirror of
https://github.com/libretro/Mesen.git
synced 2024-11-24 09:39:44 +00:00
16 lines
276 B
C#
16 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mesen.GUI.Config
|
|
{
|
|
public class ServerInfo
|
|
{
|
|
public string Name = "Default";
|
|
public UInt16 Port = 8888;
|
|
public string Password = "";
|
|
}
|
|
}
|