13 lines
373 B
C#
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; }
|
|
} |