erp-platform/api/src/Kurs.Platform.Application.Contracts/AiBots/AiBotDto.cs
Sedat ÖZTÜRK 8cc8ed07f9 Düzenleme
2025-08-11 09:34:44 +03:00

9 lines
179 B
C#

using System;
using Volo.Abp.Application.Dtos;
namespace Kurs.Platform.AiBots;
public class AiBotDto : FullAuditedEntityDto<Guid>
{
public string BotName { get; set; }
}