Files
lux/EgwCoreLib.Lux.Data/DbModel/Config/HardwareModel.cs
T
2025-10-02 19:02:20 +02:00

25 lines
785 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// <Auto-Generated>
// This is here so CodeMaid doesn't reorganize this document
// </Auto-Generated>
namespace EgwCoreLib.Lux.Data.DbModel.Config
{
/// <summary>
/// Risorsa tipo di Hardware x EF
/// </summary>
[Table("conf_Hardware")]
public class HardwareModel : Egw.Window.Data.Hardware
{
public HardwareModel(string Id, string FamilyName, string Description, string OpeningType, string Shape, int SashQty, int SashPosition) : base(Id, FamilyName, Description, OpeningType, Shape, SashQty, SashPosition)
{
}
}
}