16 lines
338 B
C#
16 lines
338 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OpenSaveCloudCore.Models.Remote
|
|
{
|
|
public class AccessToken
|
|
{
|
|
[JsonPropertyName("token")]
|
|
public string Token { get; set; }
|
|
}
|
|
}
|