/ src / modules / cmdpal / ext / Microsoft.CmdPal.Ext.ClipboardHistory / Models / ClipboardFormat.cs
ClipboardFormat.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 using System; 6 7 namespace Microsoft.CmdPal.Ext.ClipboardHistory.Models; 8 9 [Flags] 10 public enum ClipboardFormat 11 { 12 None, 13 Text = 1 << 0, 14 Html = 1 << 1, 15 Audio = 1 << 2, 16 Image = 1 << 3, 17 ImageFile = 1 << 4, 18 }