erp-platform/api/src/Erp.Platform.Application.Contracts/AiBots/AiBotDto.cs

11 lines
176 B
C#
Raw Normal View History

2025-05-06 06:45:49 +00:00
using System;
using Volo.Abp.Application.Dtos;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform.AiBots;
2025-05-06 06:45:49 +00:00
public class AiBotDto : FullAuditedEntityDto<Guid>
{
2025-12-08 08:09:19 +00:00
public string Name { get; set; }
2025-05-06 06:45:49 +00:00
}
2025-11-11 19:49:52 +00:00