13 lines
522 B
C#
13 lines
522 B
C#
namespace Wave.Data;
|
|
|
|
public class Customization {
|
|
public string AppName { get; set; } = "Wave";
|
|
public string AppDescription { get; set; } = "";
|
|
public string AppUrl { get; set; } = "http://localhost";
|
|
public string DefaultTheme { get; set; } = "";
|
|
public string DefaultLanguage { get; set; } = "";
|
|
public bool DefaultNarrowReader { get; set; } = false;
|
|
public string LogoLink { get; set; } = "";
|
|
public string IconLink { get; set; } = "";
|
|
public string Footer { get; set; } = "";
|
|
} |