Beginning stages for party executors

This commit is contained in:
watsonb8
2019-06-03 10:57:05 -04:00
parent 6503d2c410
commit b0307cf7b3
10 changed files with 370 additions and 39 deletions

View File

@ -0,0 +1,16 @@
using System;
namespace Aurora.Backend.Models
{
public class PartyMember
{
public PartyMember()
{
}
public string Username { get; set; }
public string Id { get; set; }
public string IpAddress { get; set; }
public string Port { get; set; }
}
}