2022-10-30 19:48:24 +03:00
|
|
|
namespace CodeLiturgy.Views.Models;
|
2022-09-19 05:50:15 +03:00
|
|
|
|
|
|
|
public class ErrorViewModel
|
|
|
|
{
|
2022-11-17 01:17:37 +03:00
|
|
|
public string RequestId { get; set; }
|
2022-09-19 05:50:15 +03:00
|
|
|
|
|
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
|
|
}
|