16 lines
312 B
C#
16 lines
312 B
C#
|
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; }
|
||
|
}
|
||
|
}
|