BotSharp/Infrastructure/BotSharp.Abstraction/Models/OpenAiSettings.cs
2023-05-20 16:31:31 -05:00

13 lines
262 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Abstraction.Models;
public class OpenAiSettings
{
public string UserName { get; set; }
public string Password { get; set; }
public bool IsGoogleAccount { get; set; }
}