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

15 lines
293 B
C#
Raw Normal View History

2025-08-15 14:44:14 +08:00
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; }
}
}