bank-sampah/Models/ErrorViewModel.cs

17 lines
438 B
C#

namespace BankSampahApp.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);
}