Files
BeWoPlaner/Data/Entities/AiModel.cs

20 lines
314 B
C#

using System;
using System.Collections.Generic;
using BS.Shared;
using BS.Shared.Core;
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; }
}
}