Files
FoodsharingOnboarding/FoodsharingSiegen.Contracts/Model/AppSettings.cs
Andre Beging 3d92833199 Refactor term-related settings into a dedicated class
Extracted term-related properties from AppSettings to a new TermSettings class for improved organization and separation of concerns. Updated appsettings.json to reflect the new structure.
2025-03-28 09:01:50 +01:00

11 lines
211 B
C#

namespace FoodsharingSiegen.Contracts.Model
{
public class AppSettings
{
#region Public Properties
public TermSettings Terms { get; set; } = new();
#endregion
}
}