88 lines
2.1 KiB
C#
88 lines
2.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace RomeOnlinePartner.Models
|
|
{
|
|
public class ScanResponseItem : DTO_Base
|
|
{
|
|
public ScanResponseItem()
|
|
{
|
|
|
|
}
|
|
|
|
private string _id;
|
|
[JsonProperty("id")]
|
|
public string Id
|
|
{
|
|
get { return _id; }
|
|
set { SetProperty(ref _id, value); }
|
|
}
|
|
private string _cieca_id;
|
|
[JsonProperty("cieca_id")]
|
|
public string Cieca_Id
|
|
{
|
|
get { return _cieca_id; }
|
|
set { SetProperty(ref _cieca_id, value); }
|
|
}
|
|
|
|
private string _filepath;
|
|
[JsonProperty("filepath")]
|
|
public string Filepath
|
|
{
|
|
get { return _filepath; }
|
|
set { SetProperty(ref _filepath, value); }
|
|
}
|
|
|
|
private string _owner;
|
|
[JsonProperty("owner")]
|
|
public string Owner
|
|
{
|
|
get { return _owner; }
|
|
set { SetProperty(ref _owner, value); }
|
|
}
|
|
private string _vehicle;
|
|
[JsonProperty("vehicle")]
|
|
public string Vehicle
|
|
{
|
|
get { return _vehicle; }
|
|
set { SetProperty(ref _vehicle, value); }
|
|
}
|
|
private string _clm_no;
|
|
[JsonProperty("clm_no")]
|
|
public string Clm_No
|
|
{
|
|
get { return _clm_no; }
|
|
set { SetProperty(ref _clm_no, value); }
|
|
}
|
|
|
|
private string _ins_co_nm;
|
|
[JsonProperty("ins_co_nm")]
|
|
public string Ins_Co_Nm
|
|
{
|
|
get { return _ins_co_nm; }
|
|
set { SetProperty(ref _ins_co_nm, value); }
|
|
}
|
|
|
|
|
|
private bool _success;
|
|
[JsonProperty("success")]
|
|
public bool Success
|
|
{
|
|
get { return _success; }
|
|
set { SetProperty(ref _success, value); }
|
|
}
|
|
|
|
private string _errorMessage;
|
|
[JsonProperty("errorMessage")]
|
|
public string ErrorMessage
|
|
{
|
|
get { return _errorMessage; }
|
|
set { SetProperty(ref _errorMessage, value); }
|
|
}
|
|
}
|
|
}
|