Files
2026-06-12 15:44:39 +02:00

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; }
}
}