mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
11 lines
218 B
C#
11 lines
218 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
namespace DiscImageChef.Server.Models
|
||
|
|
{
|
||
|
|
public class ErrorViewModel
|
||
|
|
{
|
||
|
|
public string RequestId { get; set; }
|
||
|
|
|
||
|
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||
|
|
}
|
||
|
|
}
|