Reorg code, move services

This commit is contained in:
Stephan
2017-12-28 09:18:09 +01:00
parent af43ea0beb
commit edf7df043f
67 changed files with 12908 additions and 12879 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.IO;
namespace Umbraco.Core.Services.Implement
{
public class LocalizedTextServiceSupplementaryFileSource
{
public LocalizedTextServiceSupplementaryFileSource(FileInfo file, bool overwriteCoreKeys)
{
if (file == null) throw new ArgumentNullException("file");
File = file;
OverwriteCoreKeys = overwriteCoreKeys;
}
public FileInfo File { get; private set; }
public bool OverwriteCoreKeys { get; private set; }
}
}