asmrobot
2019-11-13 576b92fd82f568572bc4beb125fa0ba0191a602f
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ZTImage.Configuration;
 
namespace RichCreator.Models
{
    /// <summary>
    /// 运行中的实体
    /// </summary>
    [ConfigPath("configs", "RunModel.config")]
    public class RunningModel
    {
        
 
        /// <summary>
        /// 账号索引
        /// </summary>
        public Int32 AccountIndex { get; set; }
 
 
 
        public static void UpdateAccountIndex(Int32 accountIndex)
        {
            var config = ConfigHelper.GetInstance<RunningModel>();
            config.AccountIndex = accountIndex;
            ConfigHelper.SetInstance<RunningModel>(config);
        }
 
        /// <summary>
        /// 当前刷的角色索引,从0开始
        /// </summary>
        public Int32 RoleIndex { get; set; }
 
 
 
 
        public static void UpdateRoleIndex(Int32 roleIndex)
        {
            var config = ConfigHelper.GetInstance<RunningModel>();
            config.RoleIndex = roleIndex;
            ConfigHelper.SetInstance<RunningModel>(config);
        }
 
 
    }
}