Fix filtraggio codApp x versioni + fix calcolo versione errata

This commit is contained in:
Samuele Locatelli
2024-09-18 12:02:48 +02:00
parent da9fe9f0e5
commit 1b466e4f71
18 changed files with 1500 additions and 1 deletions
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EgwControlCenter.Core.Models
{
public class ControlTarget
{
[Key]
public int Idx { get; set; } = 0;
public string ObjType { get; set; } = "";
public string BasePath { get; set; } = "";
}
}