Added default for status = 200 on RestObject constructor

This commit is contained in:
stevenh 2012-02-13 21:24:01 +00:00
parent c7a9ee32cd
commit e5a078957f

View file

@ -41,7 +41,7 @@ namespace Rests
set { this["response"] = value; }
}
public RestObject(string status)
public RestObject(string status = "200")
{
Status = status;
}