ServerManagers/src/ArkData/Models/SteamProfile.cs
2021-01-07 16:23:23 +10:00

16 lines
375 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ArkData.Models
{
internal class SteamProfile
{
public string steamid { get; set; }
public string personaname { get; set; }
public string profileurl { get; set; }
public string avatar { get; set; }
}
}