mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
13 lines
356 B
C#
13 lines
356 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace BTCPayServer.Models.ServerViewModels
|
|
{
|
|
public class LogsViewModel
|
|
{
|
|
public List<FileInfo> LogFiles { get; set; } = new List<FileInfo>();
|
|
public string Log { get; set; }
|
|
public int LogFileCount { get; set; }
|
|
public int LogFileOffset { get; set; }
|
|
}
|
|
}
|