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; } = ""; } }