wabbajack/Wabbajack.Server.Lib/TokenProviders/IFtpSiteCredentials.cs

9 lines
252 B
C#
Raw Permalink Normal View History

2021-09-27 12:42:46 +00:00
using System.Collections.Generic;
using Wabbajack.Networking.Http.Interfaces;
using Wabbajack.Server.Lib.DTOs;
2021-10-23 16:51:17 +00:00
namespace Wabbajack.Server.Lib.TokenProviders;
public interface IFtpSiteCredentials : ITokenProvider<Dictionary<StorageSpace, FtpSite>>
2021-09-27 12:42:46 +00:00
{
}