using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WeChatCore.DefineClass { /// /// 路径文件 /// public class DirectoryDefine { /// /// 语音消息储存路径 /// public static string VoiceMsgPath = "Data\\Voice"; /// /// 视频路径 /// public static string VideoMsgPath = "Data\\Video"; /// /// 图片路径 /// public static string ImageMsgPath = "Data\\Image"; /// /// 小图片路径 /// public static string ImageMsgTempPath = "Data\\Image\\Temp"; /// /// 头像路径 /// public static string HeaderImagePath = "Data\\HeaderImage"; /// /// 动画路径 /// public static string ImageMsgGifPath = "Data\\Gif"; /// /// 地图消息 /// public static string MapImageMsgPath = "Data\\MapImage"; } }