primer commit

This commit is contained in:
2024-08-30 03:19:36 -03:00
commit 2ce2a3ce01
81 changed files with 74938 additions and 0 deletions

11
Models/ErrorViewModel.cs Normal file
View File

@@ -0,0 +1,11 @@
namespace Modelo
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}