themeinfo.cs
来自「C#邮件代码库,用于邮件发送」· CS 代码 · 共 25 行
CS
25 行
namespace ASPNET.StarterKit.Communities {
using System;
public class ThemeInfo {
private string _themeName;
private string _themePath;
public string ThemeName {
get {return _themeName; }
}
public string ThemePath {
get {return _themePath; }
}
public ThemeInfo(string themeName, string themePath) {
_themeName = themeName;
_themePath = themePath;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?