mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-04-13 08:00:37 +00:00
14 lines
312 B
C#
14 lines
312 B
C#
namespace Lunaris2.Handler.ChatCommand;
|
|
|
|
public class ChatSettings
|
|
{
|
|
public string Url { get; set; }
|
|
public string Model { get; set; }
|
|
public List<Personality> Personalities { get; set; }
|
|
}
|
|
|
|
public class Personality
|
|
{
|
|
public string Name { get; set; }
|
|
public string Instruction { get; set; }
|
|
} |