You've already forked onecmonitor
mirror of
https://github.com/akpaevj/onecmonitor.git
synced 2026-06-13 21:18:17 +02:00
17 lines
630 B
C#
17 lines
630 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace OneSwiss.Server.Models;
|
|
|
|
public class CrServerProxyMiddleware : DatabaseObject
|
|
{
|
|
public bool DebugMode { get; set; }
|
|
public string ExecutablePath { get; set; } = string.Empty;
|
|
public Guid? FileId { get; set; }
|
|
[ForeignKey(nameof(FileId))]
|
|
public File? File { get; set; }
|
|
public bool ConnectAll { get; set; }
|
|
public List<CrServerProxyLocation> Locations { get; set; }
|
|
public List<ConfigurationRepositoryMiddlewareArgument> Arguments { get; set; } = [];
|
|
} |