mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 11:44:58 +08:00
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:
@@ -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" />
|
||||
|
@@ -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; }
|
||||
}
|
||||
}
|
@@ -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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user