21 lines
431 B
C#
21 lines
431 B
C#
|
|
namespace BotSharp.Abstraction.Users.Models;
|
|
|
|
public class Dashboard
|
|
{
|
|
public IList<DashboardConversation> ConversationList { get; set; } = [];
|
|
}
|
|
|
|
public class DashboardComponent
|
|
{
|
|
public required string Id { get; set; }
|
|
public string? Name { get; set; }
|
|
}
|
|
|
|
public class DashboardConversation : DashboardComponent
|
|
{
|
|
public string? ConversationId { get; set; }
|
|
public string? Instruction { get; set; } = "";
|
|
}
|
|
|