csharp-sdk-upm/Sample/LeanEngineApp/web/Models/ErrorViewModel.cs

10 lines
198 B
C#
Raw Normal View History

2021-04-29 16:04:25 +08:00
using System;
namespace web.Models {
public class ErrorViewModel {
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}