mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-03-22 10:34:30 +08:00
- 将FileStorage类的接口从IStorage改为IFileStorage - 添加IFileStorage接口定义,继承自IStorage接口 - 将ScopedStorage类的接口从IStorage改为IScopedStorage - 添加IScopedStorage接口定义,继承自IStorage接口 - 更新相关命名空间引用 - 修改FileStorage类的XML注释文档
8 lines
231 B
C#
8 lines
231 B
C#
using GFramework.Core.Abstractions.storage;
|
|
|
|
namespace GFramework.Game.Abstractions.storage;
|
|
|
|
/// <summary>
|
|
/// 表示作用域存储接口,继承自基础存储接口
|
|
/// </summary>
|
|
public interface IScopedStorage : IStorage; |