mirror of
https://github.com/NecroticBamboo/DeepTrace.git
synced 2025-12-21 11:21:51 +00:00
21 lines
554 B
C#
21 lines
554 B
C#
using DeepTrace.Services;
|
|
|
|
namespace DeepTrace.Data
|
|
{
|
|
|
|
public class ModelDefinition
|
|
{
|
|
private static int _instanceId;
|
|
public ModelDefinition()
|
|
{
|
|
var id = Interlocked.Increment(ref _instanceId);
|
|
Name = $"Model #{id}";
|
|
}
|
|
|
|
public string Name { get; set; }
|
|
public DataSourceStorage DataSource { get; set; } = new();
|
|
public string AIparameters { get; set; } = string.Empty;
|
|
public List<IntervalDefinition> IntervalDefinitionList { get; set; } = new();
|
|
}
|
|
}
|