mirror of
https://github.com/bitwarden/server.git
synced 2025-04-17 19:18:16 -05:00
11 lines
230 B
C#
11 lines
230 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Bit.Core.Models.Data
|
|
{
|
|
public class PagedResult<T>
|
|
{
|
|
public List<T> Data { get; set; } = new List<T>();
|
|
public string ContinuationToken { get; set; }
|
|
}
|
|
}
|