remove unnecessary abstraction

This commit is contained in:
qhy040404
2024-04-23 11:10:01 +08:00
parent 883c1ca95f
commit 44ba0a90a6
2 changed files with 3 additions and 12 deletions

View File

@@ -2,10 +2,12 @@
// Licensed under the MIT license.
using Snap.Hutao.Model.Metadata;
using Snap.Hutao.Service.Metadata.ContextAbstraction;
namespace Snap.Hutao.Service.DailyNote;
internal class DailyNoteMetadataContext : IDailyNoteMetadataContext
internal class DailyNoteMetadataContext : IMetadataContext,
IMetadataListChapterSource
{
public List<Chapter> Chapters { get; set; } = default!;
}

View File

@@ -1,11 +0,0 @@
// Copyright (c) DGP Studio. All rights reserved.
// Licensed under the MIT license.
using Snap.Hutao.Service.Metadata.ContextAbstraction;
namespace Snap.Hutao.Service.DailyNote;
internal interface IDailyNoteMetadataContext : IMetadataContext,
IMetadataListChapterSource
{
}