2026-02-24 20:44:16 +00:00
|
|
|
|
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; }
|
2026-06-23 17:30:19 +00:00
|
|
|
|
public string ApiUrl { get; set; }
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
public string Tenants { get; set; }
|
2026-02-24 20:44:16 +00:00
|
|
|
|
}
|