17 lines
423 B
C#
17 lines
423 B
C#
using Jugenddienst_Stunden.Types;
|
|
|
|
namespace Jugenddienst_Stunden.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Represents the application settings required for configuration and operation of the application.
|
|
/// </summary>
|
|
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; }
|
|
} |