/ src / modules / cmdpal / ext / Microsoft.CmdPal.Ext.Bookmark / Persistence / IBookmarkDataSource.cs
IBookmarkDataSource.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  namespace Microsoft.CmdPal.Ext.Bookmarks.Persistence;
 5  
 6  internal interface IBookmarkDataSource
 7  {
 8      string GetBookmarkData();
 9  
10      void SaveBookmarkData(string jsonData);
11  }