DeviceManager/DeviceRepair.Models/Common/SheetDataItem.cs

19 lines
369 B
C#
Raw Normal View History

2024-05-28 14:36:38 +00:00
using System;
namespace DeviceRepair.Models
{
[Serializable]
public class SheetDataItem
{
public int ColumnIndex { get; set; }
public int RowIndex { get; set; }
public object Value { get; set; }
public EnumMaintenanceType MaintenanceType { get; set; }
public string MaintenanceTypeValue { get; set; }
}
}