TaxManagement/Infrastructure/Helpers/Excel/Model/ModuleColumn.cs

15 lines
293 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Infrastructure.Helpers.Excel.Model
{
public class ModuleColumn
{
public string key { get; set; }
public string value { get; set; }
}
}