网站首页 网站源码
website
站点相关全部源代码,隐藏了一些关于服务器的信息
using Refit;

namespace Dpz.Core.Service.Network;

public interface IAppSettingsConfiguration
{
    Task SaveConfigurationAsync(string project,string environmentFile,byte[] buffer);
    
    Task SaveConfigurationAsync(byte[] buffer);

    Task<IReadOnlyCollection<AppSettingStruct>> GetConfigurationStructAsync(ICollection<string>? path = null);
}
loading