using Jugenddienst_Stunden.Types; namespace Jugenddienst_Stunden.Interfaces; /// /// Represents the application settings required for configuration and operation of the application. /// public interface IAppSettings { string ApiUrl { get; set; } string ApiKey { get; set; } int EmployeeId { get; set; } string Name { get; set; } string Surname { get; set; } Settings? Settings { get; set; } }