17 lines
324 B
C#
17 lines
324 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.Interface.Feature.AICore
|
|
{
|
|
public interface IAiModel
|
|
{
|
|
AiModelSource ModelSource { get; }
|
|
string ModelName { get; }
|
|
int Value { get; }
|
|
}
|
|
}
|