2018-10-03 01:44:11 +00:00
|
|
|
|
using System;
|
2018-07-19 01:56:17 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
2018-10-03 01:44:11 +00:00
|
|
|
|
namespace BotSharp.Platform.Models
|
2018-07-19 01:56:17 +00:00
|
|
|
|
{
|
2018-10-03 01:44:11 +00:00
|
|
|
|
public class AgentIntegration
|
2018-07-19 01:56:17 +00:00
|
|
|
|
{
|
2018-10-03 01:44:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Guid
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[StringLength(36)]
|
|
|
|
|
|
public String Id { get; set; }
|
|
|
|
|
|
|
2018-07-19 01:56:17 +00:00
|
|
|
|
[Required]
|
|
|
|
|
|
[StringLength(36)]
|
|
|
|
|
|
public String AgentId { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(64)]
|
|
|
|
|
|
public String Platform { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(64)]
|
|
|
|
|
|
public String VerifyToken { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[MaxLength(256)]
|
|
|
|
|
|
public String AccessToken { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|