mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-11 13:55:40 -06:00
10 lines
199 B
C#
10 lines
199 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string? RequestId { get; set; }
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
}
|
|
}
|