BotSharp/BotSharp.Platform.Rasa/Models/RasaVersionModel.cs

16 lines
343 B
C#
Raw Normal View History

2018-11-19 15:20:59 +00:00
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
public class RasaVersionModel
{
public string Version { get; set; }
[JsonProperty("minimum_compatible_version")]
public string MinimumCompatibleVersion { get; set; }
}
}