mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 02:28:31 +01:00
14 lines
356 B
C#
14 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; }
|
|
}
|
|
}
|