13 lines
414 B
C#
13 lines
414 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public class AppSettings
|
|
{
|
|
public string DataFolder { get; set; } = string.Empty;
|
|
public string Lang { get; set; } = "fr";
|
|
public bool AutoTakeOwnership { get; set; } = true;
|
|
public string Theme { get; set; } = "System";
|
|
|
|
/// <summary>MSP logo shown top-left on exported reports. Null = none.</summary>
|
|
public LogoData? MspLogo { get; set; }
|
|
}
|