ErrorViewModel.cs 169 B

1234567
  1. namespace Products.Backoffice.Models;
  2. public class ErrorViewModel
  3. {
  4. public int StatusCode { get; set; }
  5. public string? OriginalPath { get; set; }
  6. }