13 lines
325 B
C#
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; }
|
|
}
|