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