asmrobot
2019-10-14 730fe7ea65bcadbe235e40bb54b2410d14495267
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZTImage.Configuration;
 
namespace RichCreator
{
    [ConfigPath("configs","RichCreator.config")]
    public class RichCreatorConfig
    {
        /// <summary>
        /// 是否组队
        /// </summary>
        public bool IsGroup { get; set; }
 
        /// <summary>
        /// tgp_daemon路径
        /// </summary>
        public string TGPDaemonPath { get; set; }
 
        /// <summary>
        /// 启动游戏等待秒数
        /// </summary>
        public Int32 StartWaitSecond { get; set; }
 
 
        /// <summary>
        /// 角色个数
        /// </summary>
        public Int32 RoleCount { get; set; }
 
 
        /// <summary>
        /// 是否是否微信通知
        /// </summary>
        public bool NotificationWechat { get; set; }
 
 
        /// <summary>
        /// 用户名1
        /// </summary>
        public string UserName1 { get; set; }
 
        /// <summary>
        /// 密码1
        /// </summary>
        public string Password1 { get; set; }
 
 
 
        /// <summary>
        /// 用户名2
        /// </summary>
        public string UserName2 { get; set; }
 
        /// <summary>
        /// 密码2
        /// </summary>
        public string Password2 { get; set; }
 
 
        /// <summary>
        /// 用户名3
        /// </summary>
        public string UserName3 { get; set; }
 
        /// <summary>
        /// 密码3
        /// </summary>
        public string Password3 { get; set; }
 
    }
 
}