BotSharp/Platforms/BotSharp.Platform.OpenAi/Models/GetTokenResponse.cs
2023-05-20 16:31:31 -05:00

12 lines
219 B
C#

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; }
}