Basf_TCC7/HJGL/Model/ViewModels/ImportErrorViewModel.cs

24 lines
442 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model.ViewModels
{
public class ImportErrorViewModel
{
public int rowId { get; set; }
public string columnName { get; set; }
public string errMsg { get; set; }
public bool isSuccess { get; set; } = true;
public DateTime createdTime { get; set; }
}
}