mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
12 lines
273 B
C#
12 lines
273 B
C#
|
using System.Collections.Generic;
|
||
|
using BTCPayServer.Data;
|
||
|
using BTCPayServer.Services.Apps;
|
||
|
|
||
|
namespace BTCPayServer.Components.AppTopItems;
|
||
|
|
||
|
public class AppTopItemsViewModel
|
||
|
{
|
||
|
public AppData App { get; set; }
|
||
|
public IEnumerable<ItemStats> Entries { get; set; }
|
||
|
}
|