// Copyright © 2018 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System;
namespace CefSharp
{
///
/// FileDialog Flags
///
[Flags]
public enum CefFileDialogFlags
{
///
/// Prompt to overwrite if the user selects an existing file with the Save dialog.
///
OverwritePrompt = 0x01000000,
///
/// Do not display read-only files.
///
HideReadOnly = 0x02000000,
}
}