forked from Raphael/SCHALE.GameServer
10 lines
202 B
C#
10 lines
202 B
C#
|
namespace SCHALE.GameClient.Models
|
||
|
{
|
||
|
public class ErrorViewModel
|
||
|
{
|
||
|
public string? RequestId { get; set; }
|
||
|
|
||
|
public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
|
||
|
}
|
||
|
}
|