mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-31 04:43:43 +01:00
17 lines
448 B
C#
17 lines
448 B
C#
using OtterGui.Classes;
|
|
using OtterGui.Log;
|
|
|
|
namespace Glamourer.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 log, FrameworkManager framework, FilenameService fileNames)
|
|
: base(log, framework, fileNames)
|
|
{ }
|
|
}
|