BotSharp/Platforms/BotSharp.Platform.OpenAi/Models/GetTokenResponse.cs

12 lines
219 B
C#
Raw Normal View History

2023-05-20 21:31:31 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ChatGPT.Models;
public class GetTokenResponse
{
public DateTime Expires { get; set; }
public string AccessToken { get; set; }
}