forked from EllieBotDevs/elliebot
11 lines
No EOL
243 B
C#
11 lines
No EOL
243 B
C#
#nullable disable
|
|
using System.CodeDom;
|
|
|
|
namespace EllieBot.Modules.Games.Common.ChatterBot;
|
|
|
|
public sealed class ThinkResult
|
|
{
|
|
public string Text { get; set; }
|
|
public int TokensIn { get; set; }
|
|
public int TokensOut { get; set; }
|
|
} |