mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
15 lines
432 B
C#
15 lines
432 B
C#
using ReactiveUI.Fody.Helpers;
|
|
using System;
|
|
|
|
namespace Mesen.Config
|
|
{
|
|
public class NetplayConfig : BaseConfig<NetplayConfig>
|
|
{
|
|
[Reactive] public string Host { get; set; } = "localhost";
|
|
[Reactive] public UInt16 Port { get; set; } = 8888;
|
|
[Reactive] public string Password { get; set; } = "";
|
|
|
|
[Reactive] public UInt16 ServerPort { get; set; } = 8888;
|
|
[Reactive] public string ServerPassword { get; set; } = "";
|
|
}
|
|
}
|