using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Infrastructure.Constant
{
///
/// 五行常量类,
///
public class WuxingConst
{
///
/// 命位:水1、6 火2、7 木3、8 金4、9 土5、10
///
public static string[] MingWei = {"", "水", "火", "木", "金", "土", "水", "火", "木", "金", "土" };
///
/// 对应的本位群二维码链接
///
public static Dictionary GroupQRCode = new Dictionary {
{"木","/group/wood_group.png"},
{"水","/group/water_group.png"},
{"金","/group/metal_group.png"},
{"火","/group/fire_group.png"},
{"土","/group/earth_group.png"},
{"全","/group/all_group.png"}
};
};
}