iris/_benchmarks/netcore-mvc-templates/Models/ErrorViewModel.cs

10 lines
181 B
C#
Raw Normal View History

using System;
namespace netcore_mvc_templates.Models
{
public class ErrorViewModel
{
public string Title { get; set; }
public int Code { get; set; }
}
}