|
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; }
|
|
}
|
|
}
|