DeviceManager/DeviceRepair.Models/ApiOperationRtn.cs

15 lines
245 B
C#
Raw Permalink Normal View History

2024-07-01 16:52:48 +00:00
using System;
namespace DeviceRepair.Models
{
public class ApiOperationRtn
{
public DateTime OperationDate { get; set; }
public int Operation { get; set; }
public string OperationName { get; set; }
}
}