using System.ComponentModel.DataAnnotations; namespace Events.FilesAPI.Infrastructure.Options; public class GeneratedFilesOptions { [Required] public string OutputPath { get; set; } = string.Empty; }