初始化

This commit is contained in:
2025-11-20 09:56:11 +08:00
commit f19e6ad613
87 changed files with 75630 additions and 0 deletions

9
Models/ErrorViewModel.cs Normal file
View File

@@ -0,0 +1,9 @@
namespace AutoNotificatPhone.Models
{
public class ErrorViewModel
{
public string? RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}