2025-05-06 06:45:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
|
|
|
2025-08-11 06:34:44 +00:00
|
|
|
|
namespace Kurs.Platform.AiBots;
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
|
|
public class AiBotDto : FullAuditedEntityDto<Guid>
|
|
|
|
|
|
{
|
|
|
|
|
|
public string BotName { get; set; }
|
|
|
|
|
|
}
|