BotSharp/Platforms/BotSharp.Platform.Rasa/Models/RasaTrainingRegex.cs
2023-05-20 10:20:37 -05:00

14 lines
248 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace BotSharp.Platform.Rasa.Models
{
public class RasaTrainingRegex
{
public String Name { get; set; }
public String Pattern { get; set; }
}
}