mirror of
https://github.com/kataras/iris.git
synced 2025-02-09 10:36:19 +01:00
10 lines
190 B
C#
10 lines
190 B
C#
using System;
|
|
|
|
namespace netcore_mvc_templates.Models
|
|
{
|
|
public class ErrorViewModel
|
|
{
|
|
public string Title { get; set; }
|
|
public int Code { get; set; }
|
|
}
|
|
} |