Code commit
This commit is contained in:
17
CustomizePlus/Core/Services/SaveService.cs
Normal file
17
CustomizePlus/Core/Services/SaveService.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using OtterGui.Classes;
|
||||
using OtterGui.Log;
|
||||
|
||||
namespace CustomizePlus.Core.Services;
|
||||
|
||||
/// <summary>
|
||||
/// Any file type that we want to save via SaveService.
|
||||
/// </summary>
|
||||
public interface ISavable : ISavable<FilenameService>
|
||||
{ }
|
||||
|
||||
public sealed class SaveService : SaveServiceBase<FilenameService>
|
||||
{
|
||||
public SaveService(Logger logger, FrameworkManager framework, FilenameService fileNames)
|
||||
: base(logger, framework, fileNames)
|
||||
{ }
|
||||
}
|
||||
Reference in New Issue
Block a user