Ok fase check locale + check remoto...

This commit is contained in:
Samuele Locatelli
2024-09-18 18:51:41 +02:00
parent 7a7a8c0bf8
commit abf15345e4
12 changed files with 696 additions and 97 deletions
+13 -2
View File
@@ -1,8 +1,10 @@
using System;
using Newtonsoft.Json.Converters;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
namespace EgwControlCenter.Core.Models
@@ -11,7 +13,16 @@ namespace EgwControlCenter.Core.Models
{
[Key]
public int Idx { get; set; } = 0;
public string ObjType { get; set; } = "";
/// <summary>
/// Tipo applicazione da monitorare
/// </summary>
[JsonConverter(typeof(StringEnumConverter))]
public CoreEnum.AppType ApplicationType{ get; set; } = CoreEnum.AppType.None;
/// <summary>
/// Path di base da monitorare
/// </summary>
public string BasePath { get; set; } = "";
}
}