BotSharp/Platforms/BotSharp.Platform.Rasa/Models/RasaVersionModel.cs
2023-05-20 10:20:37 -05: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; }
}
}