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