ContentTypes: Removing commented out ViewModel class

This commit is contained in:
Lombiq
2019-08-27 19:40:54 +02:00
committed by Benedek Farkas
parent 78420a02ac
commit b018234e39
2 changed files with 1 additions and 17 deletions

View File

@@ -27,6 +27,7 @@
<IISExpressUseClassicPipelineMode />
<TargetFrameworkProfile />
<UseGlobalApplicationHostFile />
<Use64BitIISExpress />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
@@ -145,7 +146,6 @@
<Compile Include="ViewModels\RemovePartViewModel.cs" />
<Compile Include="ViewModels\CreateTypeViewModel.cs" />
<Compile Include="ViewModels\EditTypeViewModel.cs" />
<Compile Include="ViewModels\ListContentsViewModel.cs" />
<Compile Include="ViewModels\ListContentTypesViewModel.cs" />
</ItemGroup>
<ItemGroup>

View File

@@ -1,16 +0,0 @@
//using System.Collections.Generic;
//using Orchard.ContentManagement;
//namespace Orchard.ContentTypes.ViewModels {
// public class ListContentsViewModel {
// public string Id { get; set; }
// public int? Page { get; set; }
// public IList<Entry> Entries { get; set; }
// public class Entry {
// public ContentItem ContentItem { get; set; }
// public ContentItemMetadata ContentItemMetadata { get; set; }
// public ContentItemViewModel ViewModel { get; set; }
// }
// }
//}