using System.ComponentModel.DataAnnotations; namespace Manager.App.Models.Settings; public class LibrarySettings { [ConfigurationKeyName("Path")] [Required] public required string Path { get; set; } }