10 lines
228 B
C#
10 lines
228 B
C#
namespace QuestionableCompanion.Models;
|
|
|
|
public class LANHeartbeat
|
|
{
|
|
public string ClientName { get; set; } = string.Empty;
|
|
|
|
public ushort ClientWorldId { get; set; }
|
|
|
|
public string ClientRole { get; set; } = string.Empty;
|
|
}
|