10 lines
176 B
C#
10 lines
176 B
C#
using System;
|
|
using Volo.Abp.Application.Dtos;
|
|
|
|
namespace Erp.Platform.AiBots;
|
|
|
|
public class AiBotDto : FullAuditedEntityDto<Guid>
|
|
{
|
|
public string Name { get; set; }
|
|
}
|
|
|