Files
PersonSport/Models/ErrorViewModel.cs
2026-03-05 15:43:26 +01:00

8 lines
198 B
C#

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