16 lines
352 B
C#
16 lines
352 B
C#
namespace SharepointToolbox.Core.Models;
|
|
|
|
/// <summary>
|
|
/// Classification used to filter storage report output. Every node is captured
|
|
/// during a scan; the report user picks which categories appear.
|
|
/// </summary>
|
|
public enum StorageNodeKind
|
|
{
|
|
Library,
|
|
HiddenLibrary,
|
|
PreservationHold,
|
|
ListAttachments,
|
|
RecycleBin,
|
|
Subsite
|
|
}
|