BotSharp/Infrastructure/BotSharp.Abstraction/Models/OpenAiSettings.cs

13 lines
262 B
C#
Raw Normal View History

2023-05-20 21:31:31 +00:00
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; }
}