14 lines
245 B
C#
14 lines
245 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BotSharp.Core.Engines.Articulate
|
|
{
|
|
public class LanguageModel
|
|
{
|
|
public string Text { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
}
|