Files
Orchard/src/Orchard.Web/Packages/Orchard.Sandbox/ViewModels/PageCreateViewModel.cs
loudej bcf60a04dd Updating sandbox sample
--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042288
2009-11-26 03:00:12 +00:00

13 lines
304 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Orchard.Mvc.ViewModels;
using Orchard.Sandbox.Models;
namespace Orchard.Sandbox.ViewModels {
public class PageCreateViewModel : BaseViewModel {
public string Name { get; set; }
}
}