2019-03-16 16:23:02 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
2019-03-17 04:50:33 +00:00
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
2019-03-16 16:23:02 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BotSharp.Platform.Models.Agents
|
|
|
|
|
|
{
|
2019-03-17 04:50:33 +00:00
|
|
|
|
public class AgentCreationRequestModel
|
2019-03-16 16:23:02 +00:00
|
|
|
|
{
|
2019-03-17 04:50:33 +00:00
|
|
|
|
[Required]
|
2019-03-16 16:23:02 +00:00
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|