BotSharp/BotSharp.Core/Models/Agents/AgentCreationRequestModel.cs
2019-03-16 23:50:33 -05:00

16 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace BotSharp.Platform.Models.Agents
{
public class AgentCreationRequestModel
{
[Required]
public string Name { get; set; }
public string Description { get; set; }
}
}