mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
14 lines
373 B
C#
14 lines
373 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
using Orchard.UI.Resources;
|
||
|
|
||
|
namespace Orchard.Indexing {
|
||
|
public class IndexingResourceManifest : ResourceManifest {
|
||
|
public IndexingResourceManifest() {
|
||
|
DefineStyle("IndexingAdmin").SetUrl("admin.css"); // todo: this does not exist
|
||
|
}
|
||
|
}
|
||
|
}
|