2025-05-16 13:38:48 +02:00
|
|
|
|
using BS.Shared;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
|
2025-05-16 13:38:48 +02:00
|
|
|
|
using System;
|
2025-04-02 16:01:21 +02:00
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Data.Entities
|
|
|
|
|
|
{
|
|
|
|
|
|
public class AiModel : BeWoEntityBase
|
|
|
|
|
|
{
|
|
|
|
|
|
public AiModel()
|
|
|
|
|
|
{
|
|
|
|
|
|
_Tid = TableID.AiModel;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public virtual string ModelName { get; set; }
|
|
|
|
|
|
public virtual int Value { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|