mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
9 lines
195 B
C#
9 lines
195 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ServerManagerTool.Common.Model
|
|
{
|
|
public class SteamUserDetailResponse
|
|
{
|
|
public List<SteamUserDetail> players { get; set; }
|
|
}
|
|
}
|