11 lines
357 B
C#
11 lines
357 B
C#
namespace SharepointToolbox.Web.Core.Models;
|
|
|
|
public class SiteTemplateOptions
|
|
{
|
|
public bool CaptureLibraries { get; set; } = true;
|
|
public bool CaptureFolders { get; set; } = true;
|
|
public bool CapturePermissionGroups { get; set; } = true;
|
|
public bool CaptureLogo { get; set; } = true;
|
|
public bool CaptureSettings { get; set; } = true;
|
|
}
|