13 lines
330 B
C#
13 lines
330 B
C#
using System.Collections.Generic;
|
|
|
|
namespace UI
|
|
{
|
|
public class AIChatFormContext : UIContext
|
|
{
|
|
public AIChatFormController Controller;
|
|
public bool ClearHistoryOnOpen = true;
|
|
public int LanguageMode = 0;
|
|
public List<AIChatMessageContext> Messages = new List<AIChatMessageContext>();
|
|
}
|
|
}
|