17 lines
429 B
C#
17 lines
429 B
C#
|
|
namespace MiaoYu.Core.Cos.Services;
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface ICodeCosService:ISingletonDependency //:ITransientDependency: IScopedDependency
|
|
{
|
|
/// <summary>
|
|
/// 返回签名地址
|
|
/// </summary>
|
|
/// <param name="cosGenerateSign"></param>
|
|
/// <returns>sign签名值,过期时间</returns>
|
|
(string sign, int expiredSeconds) GenerateSignURL(CosGenerateSign cosGenerateSign);
|
|
}
|
|
|