Feat Workers Prioridades y Nivel Serilog

This commit is contained in:
2025-09-06 21:44:52 -03:00
parent f384a640f3
commit fa92d9638c
29 changed files with 2068 additions and 95 deletions

View File

@@ -0,0 +1,7 @@
using System.ComponentModel.DataAnnotations;
public class UpdateLoggingLevelRequest
{
[Required]
public string Level { get; set; } = null!;
}