Files
SharepointToolbox-Web/Core/Models/AppSettings.cs
T
2026-06-02 10:56:03 +02:00

10 lines
286 B
C#

namespace SharepointToolbox.Web.Core.Models;
public class AppSettings
{
public string DataFolder { get; set; } = string.Empty;
public string Lang { get; set; } = "en";
public bool AutoTakeOwnership { get; set; } = false;
public string Theme { get; set; } = "System";
}