2025-05-06 06:45:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Domain.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Kurs.Platform.Entities;
|
|
|
|
|
|
|
|
|
|
|
|
public class AiBot : Entity<Guid>
|
|
|
|
|
|
{
|
2025-06-25 06:48:40 +00:00
|
|
|
|
public string BotName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public AiBot(Guid id, string botName)
|
|
|
|
|
|
{
|
|
|
|
|
|
Id = Id;
|
|
|
|
|
|
BotName = botName;
|
|
|
|
|
|
}
|
2025-05-06 06:45:49 +00:00
|
|
|
|
}
|
2025-06-25 06:48:40 +00:00
|
|
|
|
|