sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/AiBots/AiBotDto.cs

11 lines
180 B
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using System;
using Volo.Abp.Application.Dtos;
namespace Sozsoft.Platform.AiBots;
public class AiBotDto : FullAuditedEntityDto<Guid>
{
public string Name { get; set; }
}