11 lines
208 B
C#
11 lines
208 B
C#
#nullable enable
|
|
using System.IO;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Torch.API.WebAPI.Plugins;
|
|
|
|
public interface IPackageItem
|
|
{
|
|
Task<Stream> OpenFileAsync();
|
|
public string FileName { get; }
|
|
} |