Removed no longer used Create<model>Params from Blogs

--HG--
extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4043664
This commit is contained in:
skewed
2009-12-10 07:51:16 +00:00
parent 0f9c0b3934
commit e19de46233
3 changed files with 0 additions and 22 deletions

View File

@@ -83,9 +83,7 @@
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Routes.cs" />
<Compile Include="Services\BlogPostService.cs" />
<Compile Include="Services\CreateBlogPostParams.cs" />
<Compile Include="Services\IBlogPostService.cs" />
<Compile Include="Services\CreateBlogParams.cs" />
<Compile Include="Services\IBlogService.cs" />
<Compile Include="ViewModels\BlogsForAdminViewModel.cs" />
<Compile Include="ViewModels\BlogViewModel.cs" />

View File

@@ -1,8 +0,0 @@
namespace Orchard.Blogs.Services {
public class CreateBlogParams {
public string Name { get; set; }
public string Description { get; set; }
public string Slug { get; set; }
//public bool Enabled { get; set; }
}
}

View File

@@ -1,12 +0,0 @@
using System;
using Orchard.Blogs.Models;
namespace Orchard.Blogs.Services {
public class CreateBlogPostParams {
public Blog Blog { get; set; }
public string Title { get; set; }
public string Body { get; set; }
public string Slug { get; set; }
public DateTime? Published { get; set; }
}
}