BotSharp/BotSharp.Platform.Rasa/Models/RasaVersionModel.cs
2018-11-19 09:20:59 -06:00

16 lines
343 B
C#

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