using PowderCoating.Core.Entities; namespace PowderCoating.Application.Interfaces; public interface IPlatformSettingsService { Task GetAsync(string key); Task GetBoolAsync(string key, bool defaultValue = false); Task SetAsync(string key, string? value, string? updatedBy = null); Task> GetAllAsync(); }