oi-metrology/Shared/Models/DataResponse.cs
Mike Phares f0c2140f93 TargetFramework update,
reference updates and added tests for Viewer
2023-01-06 21:17:30 -07:00

19 lines
402 B
C#

namespace OI.Metrology.Shared.Models;
public class DataResponse
{
public bool Success { get; set; }
public long HeaderID { get; set; }
public List<string> Errors { get; set; }
public List<string> Warnings { get; set; }
public DataResponse()
{
HeaderID = -1;
Success = false;
Errors = new List<string>();
Warnings = new List<string>();
}
}