mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
16 lines
375 B
C#
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; }
|
|
}
|
|
}
|