mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-04-28 09:15:46 +02:00
11 lines
377 B
C#
11 lines
377 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TweetLib.Core.Systems.Dialogs {
|
|
public sealed class SaveFileDialogSettings {
|
|
public string DialogTitle { get; internal set; } = "Save File";
|
|
public bool OverwritePrompt { get; internal set; } = true;
|
|
public string? FileName { get; internal set; }
|
|
public IReadOnlyList<FileDialogFilter>? Filters { get; internal set; }
|
|
}
|
|
}
|