添加项目文件。

This commit is contained in:
jl
2023-01-13 15:30:20 +08:00
parent 40ed216831
commit bf208bde56
834 changed files with 470902 additions and 0 deletions

19
Epost.Model/DataModel.cs Normal file
View File

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Epost.Model
{
public class DataModel
{
private string scanstr = string.Empty;
private string car_id = string.Empty;
private string controlip = string.Empty;
public string Scanstr { get => scanstr; set => scanstr = value; }
public string Car_id { get => car_id; set => car_id = value; }
public string Controlip { get => controlip; set => controlip = value; }
}
}