wangguan
2020-10-22 74daf5509be4fc140fd1bdb6d4df5f1c1002e368
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
 
/**
 * 模块,UI逻辑事件处理中心
 * @Author: chenxin
 * @Date: 2020-09-02 17:34:25
 */
namespace KTGMGemClient
{
    public class EventCenter : EventBase
    {
        private EventCenter() { }
        private static EventCenter ins = new EventCenter();
        public static EventCenter Ins { get { return ins; } private set { } }
    }
}