Files
Excel-Pajak-Generator-Ak/excel_pajak/Models/AppSettings.cs
2026-03-09 08:54:42 +07:00

13 lines
373 B
C#

using System.ComponentModel.DataAnnotations;
namespace excel_pajak.Models;
public class AppSettings
{
public List<string> SchemaList { get; set; } = new List<string>();
[RegularExpression(@"^\d{4}$", ErrorMessage = "Year must be a 4-digit number")]
public string Year { get; set; } = string.Empty;
public ExcelSettings? ExcelSettings { get; set; }
}