mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
10 lines
367 B
C#
10 lines
367 B
C#
using System.Collections.Generic;
|
|
using Orchard.Core.Localization.Models;
|
|
|
|
namespace Orchard.Core.Localization.Services {
|
|
public interface IContentItemLocalizationService : IDependency {
|
|
IEnumerable<Localized> Get();
|
|
Localized Get(int localizedId);
|
|
Localized GetLocalizationForCulture(int masterId, string cultureName);
|
|
}
|
|
} |