mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-01-15 05:42:46 +01:00
11 lines
338 B
C#
11 lines
338 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TweetLib.Utils.Dialogs {
|
|
public sealed class SaveFileDialogSettings {
|
|
public string DialogTitle { get; init; } = "Save File";
|
|
public bool OverwritePrompt { get; init; } = true;
|
|
public string? FileName { get; init; }
|
|
public IReadOnlyList<FileDialogFilter>? Filters { get; init; }
|
|
}
|
|
}
|