qstbak/QuestionableCompanion/QuestionableCompanion.Models/LANHelperStatusResponse.cs
2025-12-07 10:54:53 +10:00

12 lines
263 B
C#

namespace QuestionableCompanion.Models;
public class LANHelperStatusResponse
{
public string Name { get; set; } = string.Empty;
public ushort WorldId { get; set; }
public LANHelperStatus Status { get; set; }
public string? CurrentActivity { get; set; }
}