Added support for friendly names and thumbnails in theme, layout, and container components. Added fallback support during loading for themes, layout, and containers.
This commit is contained in:
@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace Oqtane.Models
|
||||
{
|
||||
@ -23,9 +24,16 @@ namespace Oqtane.Models
|
||||
public string Contact { get; set; }
|
||||
public string License { get; set; }
|
||||
public string Dependencies { get; set; }
|
||||
public string ThemeControls { get; set; }
|
||||
public string PaneLayouts { get; set; }
|
||||
public string ContainerControls { get; set; }
|
||||
public string AssemblyName { get; set; }
|
||||
public List<ThemeControl> Themes { get; set; }
|
||||
public List<ThemeControl> Layouts { get; set; }
|
||||
public List<ThemeControl> Containers { get; set; }
|
||||
|
||||
//[Obsolete("This property is obsolete. Use Themes instead.", false)]
|
||||
public string ThemeControls { get; set; }
|
||||
//[Obsolete("This property is obsolete. Use Layouts instead.", false)]
|
||||
public string PaneLayouts { get; set; }
|
||||
//[Obsolete("This property is obsolete. Use Containers instead.", false)]
|
||||
public string ContainerControls { get; set; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user