mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2025-12-17 06:50:29 +00:00
16 lines
310 B
C#
16 lines
310 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SteamAuth
|
|||
|
|
{
|
|||
|
|
public class Confirmation
|
|||
|
|
{
|
|||
|
|
public string ConfirmationID;
|
|||
|
|
public string ConfirmationKey;
|
|||
|
|
public string ConfirmationDescription;
|
|||
|
|
}
|
|||
|
|
}
|