8 lines
198 B
C#
8 lines
198 B
C#
namespace PersonSport.Models {
|
|
public class ErrorViewModel {
|
|
public string RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
}
|