您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ErrorViewModel.cs 181B

12345678
  1. namespace SecureSharing.Models;
  2. public sealed class ErrorViewModel
  3. {
  4. public string RequestId { get; set; }
  5. public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
  6. }