mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-24 14:50:50 +01:00
14 lines
358 B
C#
14 lines
358 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; }
|
|||
|
}
|
|||
|
}
|