Files
FSI.BT.IR.Plc.Settings.Log/worker/FSI.BT.IR.Plc.Settings.Log/Models/Plc.cs
Stephan Maier e791920907 Sicherung
2024-10-17 15:37:52 +02:00

29 lines
640 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FSI.BT.IR.Plc.Settings.Log.Models
{
public class Plc
{
[Key]
public int Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public string IpAdress { get; set; }
public int Rack { get; set; }
public int Slot { get; set; }
public DateTime Created { get; set; } = DateTime.Now;
public DateTime Updated { get; set; } = DateTime.Now;
}
}