mirror of
https://github.com/fergalmoran/podnoms.git
synced 2026-01-04 23:57:00 +00:00
7 lines
194 B
C#
7 lines
194 B
C#
using System.Threading.Tasks;
|
|
|
|
namespace PodNoms.Api.Services.Storage {
|
|
public interface IFileUtilities {
|
|
Task<long> GetRemoteFileSize(string containerName, string fileName);
|
|
}
|
|
} |