10 lines
246 B
C#
10 lines
246 B
C#
namespace DwgExtractorManual.Models
|
|
{
|
|
public class AppSettings
|
|
{
|
|
public string? SourceFolderPath { get; set; }
|
|
public string? DestinationFolderPath { get; set; }
|
|
public string? LastExportType { get; set; }
|
|
}
|
|
}
|