using System.Collections.Generic; namespace Bit.Core.Models.Data { public class PagedResult { public List Data { get; set; } = new List(); public string ContinuationToken { get; set; } } }