<PackageReference Include="Relativity.Server.Services.Interfaces.SDK" Version="5000.0.2" />

Relativity.Services.Interfaces.Shared.SecurableList<T>

public class SecurableList<T>
Generic class that indicates whether a list has items secured from the current user
public bool HasSecuredItems { get; set; }

Whether or not there are any number of items secured away from the user.

public List<T> ViewableItems { get; set; }

List of items that are accessible to the user.

public SecurableList()

public SecurableList(bool hasSecuredItems, List<T> viewableItems)