ContentModel.cs
1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using NCC.Dependency;
using System.Collections.Generic;
namespace NCC.TaskScheduler.Entitys.Model
{
[SuppressSniffer]
public class ContentModel
{
/// <summary>
/// 表达式
/// </summary>
public string cron { get; set; }
/// <summary>
/// 请求类型
/// </summary>
public string interfaceType { get; set; }
/// <summary>
/// 请求路径
/// </summary>
public string interfaceUrl { get; set; }
/// <summary>
/// 请求参数
/// </summary>
public List<KeyValuePair<string, string>> parameter { get; set; }
/// <summary>
/// 数据库
/// </summary>
public string database { get; set; }
/// <summary>
/// 存储名称
/// </summary>
public string stored { get; set; }
/// <summary>
/// 存储参数
/// </summary>
public List<KeyValuePair<string, string>> storedParameter { get; set; }
}
}