26 lines
569 B
C#
26 lines
569 B
C#
namespace SoftwayWeb.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
public string? ErrMsg { get; set; }
|
|
|
|
public string? BackPage { get; set; }
|
|
|
|
public string? Field1 { get; set; }
|
|
|
|
public string? Field2 { get; set; }
|
|
|
|
public string? Field3 { get; set; }
|
|
|
|
public string? Field1_lbl { get; set; }
|
|
|
|
public string? Field2_lbl { get; set; }
|
|
|
|
public string? Field3_lbl { get; set; }
|
|
|
|
}
|
|
} |