forked from BlogEngine/BlogEngine.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLookups.cs
More file actions
38 lines (36 loc) · 1.13 KB
/
Lookups.cs
File metadata and controls
38 lines (36 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.Collections.Generic;
namespace BlogEngine.Core.Data.Models
{
/// <summary>
/// Lookups
/// </summary>
public class Lookups
{
/// <summary>
/// Cultures supported by BE
/// </summary>
public IEnumerable<SelectOption> Cultures { get; set; }
/// <summary>
/// Roles for self registration
/// </summary>
public IEnumerable<SelectOption> SelfRegisterRoles { get; set; }
/// <summary>
/// Page list
/// </summary>
public IEnumerable<SelectOption> PageList { get; set; }
/// <summary>
/// List of blog authors
/// </summary>
public IEnumerable<SelectOption> AuthorList { get; set; }
/// <summary>
/// Category list
/// </summary>
public IEnumerable<SelectOption> CategoryList { get; set; }
/// <summary>
/// List of installed themes
/// </summary>
public IEnumerable<SelectOption> InstalledThemes { get; set; }
public EditorOptions PostOptions { get; set; }
public EditorOptions PageOptions { get; set; }
}
}