You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-19 22:59:58 +02:00
9 lines
266 B
C#
9 lines
266 B
C#
namespace OnecMonitor.Server.ViewModels.ErrorLoggingService;
|
|
|
|
public class ErrorLoggingServiceSettingsViewModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public int ReportsTtl { get; set; }
|
|
public string Message { get; set; }
|
|
} |