using System.Collections.Generic; using BTCPayServer.Abstractions.Contracts; namespace BTCPayServer.Models.NotificationViewModels { public class IndexViewModel : BasePagingViewModel { public List Items { get; set; } public override int CurrentPageCount => Items.Count; } }