mirror of
https://github.com/PacktPublishing/Learn-WinUI-3-Second-Edition.git
synced 2026-06-20 12:23:09 +00:00
15 lines
223 B
C#
15 lines
223 B
C#
namespace TemplateStudioSampleApp.Models;
|
|
|
|
public class LocalSettingsOptions
|
|
{
|
|
public string? ApplicationDataFolder
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string? LocalSettingsFile
|
|
{
|
|
get; set;
|
|
}
|
|
}
|