10 lines
206 B
C#
10 lines
206 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace Events.FilesAPI.Infrastructure.Options;
|
|
|
|
public class GeneratedFilesOptions
|
|
{
|
|
[Required]
|
|
public string OutputPath { get; set; } = string.Empty;
|
|
}
|