2024-05-01 22:39:51 +04:00

8 lines
177 B
C#

namespace DinerClientApp.Models {
public class ErrorViewModel {
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}