v2.9.2024.0203 修正net40的客户端调用
智能大石头 authored at 2024-02-03 22:06:24
503.00 B
Stardust
using System.IO;
using System;
using Microsoft.Extensions.FileProviders;

namespace Stardust.Extensions.Caches;

class FileInfoModel : IFileInfo
{
    public String Name { get; set; } = null!;

    public Boolean Exists { get; set; }

    public Boolean IsDirectory { get; set; }

    public DateTimeOffset LastModified { get; set; }

    public Int64 Length { get; set; }

    public String? PhysicalPath { get; set; }

    public Stream CreateReadStream() => throw new NotImplementedException();
}