Files
limanapp/EgwControlCenter.Core/Models/ControlTarget.cs
T
2024-09-18 12:02:48 +02:00

18 lines
408 B
C#

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