BotSharp/BotSharp.Platform.Articulate/Models/LanguageModel.cs

14 lines
248 B
C#
Raw Normal View History

2019-03-16 16:34:32 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Articulate.Models
{
public class LanguageModel
{
public string Text { get; set; }
public string Value { get; set; }
}
}