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