-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSession2.cs
More file actions
35 lines (31 loc) · 1.09 KB
/
Session2.cs
File metadata and controls
35 lines (31 loc) · 1.09 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
namespace WSSession2
{
class Session2
{
/// <summary>
/// 计划名称
/// </summary>
private static string Plan_Name;
public static string Plan_name { get => Plan_Name; set => Plan_Name = value; }
/// <summary>
/// 计划Id
/// </summary>
private static string Plan_Id;
public static string Plan_id { get => Plan_Id; set => Plan_Id = value; }
/// <summary>
/// 视频判定变量(绑定视频 || 已绑定视频)
/// </summary>
private static string ACtion;
public static string Action { get => ACtion; set => ACtion = value; }
/// <summary>
/// 视频类型
/// </summary>
private static string Moive_Type;
public static string Moive_type { get => Moive_Type; set => Moive_Type = value; }
/// <summary>
/// 视频名称 (*.*)
/// </summary>
private static string Moive_Name;
public static string Moive_name { get => Moive_Name; set => Moive_Name = value; }
}
}