2024-04-30 21:22:23 +03:00

8 lines
185 B
C#

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