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.
11 lines
211 B
C#
11 lines
211 B
C#
namespace FoodsharingSiegen.Contracts.Model
|
|
{
|
|
public class AppSettings
|
|
{
|
|
#region Public Properties
|
|
|
|
public TermSettings Terms { get; set; } = new();
|
|
|
|
#endregion
|
|
}
|
|
} |