cscg24-photoeditor

CSCG 2024 Challenge 'PhotoEditor'
git clone https://git.sinitax.com/sinitax/cscg24-photoeditor
Log | Files | Refs | sfeed.txt

ErrorViewModel.cs (182B)


      1namespace PhotoEditor.Models;
      2
      3public class ErrorViewModel
      4{
      5    public string? RequestId { get; set; }
      6
      7    public bool ShowRequestId => !string.IsNullOrEmpty(RequestId);
      8}