Files
manual_wpf/Models/AppSettings.cs
2025-08-12 14:33:18 +09:00

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; }
}
}