2024-10-06 14:23:43 +04:00

15 lines
318 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace KryukovLib.Models
{
public class DocumentConfig
{
public string FilePath { get; init; } = string.Empty;
public string Header { get; init; } = string.Empty;
}
}