10 lines
286 B
C#
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";
|
|
}
|