12 lines
No EOL
303 B
C#
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; }
|
|
}
|
|
} |