12 lines
307 B
C#
12 lines
307 B
C#
namespace OpenArchival.Blazor.Config;
|
|
|
|
public class ApplicationOptions
|
|
{
|
|
public const string Key = "ApplicationOptions";
|
|
public string NavBarTitle { get; set; } = "";
|
|
|
|
public string HomepageContentLocation { get; set; } = "";
|
|
|
|
public string AboutPageContentLocation { get; set; } = "";
|
|
}
|