Ok fase check locale + check remoto...
This commit is contained in:
@@ -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; } = "";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user