TFS_ANTIGUO/TPAtesa_CuentasCobrar/CuentasCobrar.UI/Models/ErrorViewModel.cs

10 lines
210 B
C#
Raw Normal View History

namespace CuentasCobrar.UI.Models
{
public class ErrorViewModel
{
public int? Status { get; set; }
public string? Title { get; set; }
public string? Detail { get; set; }
}
}