mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 22:43:11 +02:00
9 lines
175 B
C#
9 lines
175 B
C#
|
|
namespace lab2.Models;
|
||
|
|
|
||
|
|
public class ErrorViewModel
|
||
|
|
{
|
||
|
|
public string? RequestId { get; set; }
|
||
|
|
|
||
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||
|
|
}
|