10 lines
210 B
C#
10 lines
210 B
C#
|
|
namespace CuentasCobrar.UI.Models
|
||
|
|
{
|
||
|
|
public class ErrorViewModel
|
||
|
|
{
|
||
|
|
public int? Status { get; set; }
|
||
|
|
public string? Title { get; set; }
|
||
|
|
public string? Detail { get; set; }
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|