17 lines
442 B
C#
17 lines
442 B
C#
using Newtonsoft.Json.Linq;
|
|
|
|
namespace Knoks.Framework.Content
|
|
{
|
|
public class ContentSettings
|
|
{
|
|
public const string DefaultLanguageCode = "en";
|
|
|
|
public string Group { get; set; }
|
|
public string ContentGroup { get; set; }
|
|
public string Category { get; set; }
|
|
public string LanguageCode { get; set; }
|
|
public string Layout { get; set; }
|
|
public JObject Data { get; set; }
|
|
}
|
|
}
|