FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit 1d61d35d authored by Dr Adam Thorn's avatar Dr Adam Thorn
Browse files

Make WpkgMessageResponse serializable

parent b50573a3
No related branches found
No related tags found
No related merge requests found
using System; using System.Runtime.Serialization;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WpkgInstaller namespace WpkgInstaller
{ {
[DataContract]
public class WpkgMessageResponse public class WpkgMessageResponse
{ {
[DataMember]
public string Message { get; set; } public string Message { get; set; }
public WpkgMessageResponse()
{
}
public WpkgMessageResponse(string msg) public WpkgMessageResponse(string msg)
{ {
Message = msg; Message = msg;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment