Files
WorkFlowCheck/src/WorkFlowCheck.Common/DTO/EquipmentDTO.cs
T
2025-02-27 12:47:58 +01:00

16 lines
353 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.Common.DTO
{
public class EquipmentDTO
{
public int Id { get; set; }
public string ShortName { get; set; } = null!;
public string EquipmentNumber { get; set; } = null!;
}
}