8 lines
185 B
C#
Raw Normal View History

2024-04-30 21:22:23 +03:00
namespace ServiceSourceClientApp.Models {
public class ErrorViewModel {
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}