15 lines
304 B
C#
15 lines
304 B
C#
|
namespace JXCMS.Core.Themes
|
|||
|
{
|
|||
|
public class ThemeConfig
|
|||
|
{
|
|||
|
public string ThemeName { get; set; }
|
|||
|
|
|||
|
public string FolderName { get; set; }
|
|||
|
|
|||
|
public string ScreenShot { get; set; }
|
|||
|
|
|||
|
public int ThemeType { get; set; }
|
|||
|
|
|||
|
public bool IsUsing { get; set; }
|
|||
|
}
|
|||
|
}
|