17 lines
433 B
C#
17 lines
433 B
C#
namespace BpsRwApp.Models;
|
|
|
|
/// <summary>
|
|
/// Model untuk menampilkan halaman error
|
|
/// </summary>
|
|
public class ErrorViewModel
|
|
{
|
|
/// <summary>
|
|
/// ID unik untuk tracking request yang mengalami error
|
|
/// </summary>
|
|
public string? RequestId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Property untuk mengecek apakah RequestId tersedia
|
|
/// </summary>
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
|
} |