JXMovies/CMS/JXCMS.CMS.Movie/Models/ErrorViewModel.cs
2020-02-09 19:10:05 +08:00

12 lines
208 B
C#
Executable File

using System;
namespace JXCMS.CMS.Models
{
public class ErrorViewModel
{
public string RequestId { get; set; }
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
}
}