mirror of
https://github.com/4sval/FModel.git
synced 2026-04-14 05:26:42 -05:00
12 lines
349 B
C#
12 lines
349 B
C#
using System;
|
|
using System.Diagnostics;
|
|
using J = Newtonsoft.Json.JsonPropertyAttribute;
|
|
|
|
namespace FModel.ViewModels.ApiEndpoints.Models;
|
|
|
|
[DebuggerDisplay("{" + nameof(AccessToken) + "}")]
|
|
public class AuthResponse
|
|
{
|
|
[J("access_token")] public string AccessToken { get; set; }
|
|
[J("expires_at")] public DateTime ExpiresAt { get; set; }
|
|
} |