2024-11-10 23:28:25 +01:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using Wino.Core.Domain.Models.Settings;
|
|
|
|
|
|
|
2025-02-16 11:54:23 +01:00
|
|
|
|
namespace Wino.Core.Domain.Interfaces;
|
|
|
|
|
|
|
|
|
|
|
|
public interface ISettingsBuilderService
|
2024-11-10 23:28:25 +01:00
|
|
|
|
{
|
2025-02-16 11:54:23 +01:00
|
|
|
|
List<SettingOption> GetSettingItems();
|
2024-11-10 23:28:25 +01:00
|
|
|
|
}
|