websitepanel/WebsitePanel/Sources/WebsitePanel.WebDavPortal/Models/ErrorModel.cs
2015-04-15 05:23:08 -07:00

12 lines
No EOL
303 B
C#

using System;
using WebsitePanel.WebDavPortal.Models.Common;
namespace WebsitePanel.WebDavPortal.Models
{
public class ErrorModel
{
public int HttpStatusCode { get; set; }
public string Message { get; set; }
public Exception Exception { get; set; }
}
}