mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-21 03:44:20 +08:00
10 lines
315 B
C#
10 lines
315 B
C#
![]() |
using Orchard.Core.Common.Records;
|
||
|
using Orchard.Data;
|
||
|
using Orchard.Models.Driver;
|
||
|
|
||
|
namespace Orchard.Core.Common.Models {
|
||
|
public class RoutableDriver : ModelDriverWithRecord<RoutableRecord> {
|
||
|
public RoutableDriver(IRepository<RoutableRecord> repository) : base(repository) {
|
||
|
}
|
||
|
}
|
||
|
}
|