using Api.Framework.Tools;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Api.Framework.Model
{
///
/// 通知Api类型
///
public enum NoticeApiType
{
企业钉钉机器人API,
企业微信机器人API,
飞书机器人API
}
///
/// 通知机器人信息
///
public class fl_noticeapi_info : base_model
{
///
/// 名称
///
public string name { get; set; }
///
/// API位置
///
public string api_location { get; set; }
///
/// 备注
///
public string remark { get; set; }
public NoticeApiType notice_apitype { get; set; }
///
/// Token等,验证字段
///
public string token { get; set; }
}
}