sozsoft-platform/api/src/Sozsoft.Platform.Domain/Entities/Host/AiBot.cs
2026-06-23 20:30:19 +03:00

13 lines
325 B
C#

using System;
using Volo.Abp.Domain.Entities;
namespace Sozsoft.Platform.Entities;
public class AiBot : Entity<Guid>
{
public string Name { get; set; }
public bool IsActive { get; set; }
public string ApiUrl { get; set; }
public string Description { get; set; }
public string Tenants { get; set; }
}