This repository has been archived on 2020-12-20. You can view files and clone it, but cannot push or open issues or pull requests.

21 lines
351 B
C#
Raw Normal View History

2019-12-07 13:47:45 -05:00
using System;
namespace Aurora.Design.Views.Party.NewPartyDialog
{
public enum ConnectionType
{
Host,
Join
}
2019-12-10 15:10:27 -05:00
public class ConnectionDetails
2019-12-07 13:47:45 -05:00
{
public ConnectionDetails()
{
}
public string HostName { get; set; }
public ConnectionType ConnectionType { get; set; }
}
}