19 lines
369 B
C#
19 lines
369 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|