13 lines
261 B
C#
13 lines
261 B
C#
using Service.Interface;
|
|
|
|
namespace Service.Implement
|
|
{
|
|
/// <summary>
|
|
/// 文件存储管理 服务实现
|
|
/// </summary>
|
|
public class FileStorageService : IFileStorageService
|
|
{
|
|
// TODO: 实现 文件存储管理 相关方法
|
|
}
|
|
}
|