Making UpdatedActivityModel serializable

It's used in TempData
This commit is contained in:
Sebastien Ros 2013-10-28 11:47:30 -07:00
parent 5c1b979192
commit 78ae6ba28c

View File

@ -1,6 +1,5 @@
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Web.Mvc;
using System;
using System.Collections.Generic;
using Orchard.Workflows.Models;
using Orchard.Workflows.Services;
@ -13,9 +12,9 @@ namespace Orchard.Workflows.ViewModels {
public WorkflowRecord Workflow { get; set; }
}
[Serializable]
public class UpdatedActivityModel {
public string ClientId { get; set; }
public string Data { get; set; }
}
}