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.
aurora-sharp-desktop/Aurora/Backend/Models/PartyMember.cs

16 lines
312 B
C#
Raw Normal View History

2019-06-03 14:57:05 +00:00
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; }
}
}