8 lines
184 B
C#
8 lines
184 B
C#
namespace excel_pajak.Models;
|
|
|
|
public class ExcelSettings
|
|
{
|
|
public string TemplatePath { get; set; } = string.Empty;
|
|
public string OutputFolder { get; set; } = string.Empty;
|
|
}
|