2017-07-20 11:21:28 +02:00
|
|
|
|
using System;
|
2015-06-15 17:13:34 +02:00
|
|
|
|
using System.IO;
|
|
|
|
|
|
|
2017-12-28 09:18:09 +01:00
|
|
|
|
namespace Umbraco.Core.Services.Implement
|
2015-06-15 17:13:34 +02:00
|
|
|
|
{
|
|
|
|
|
|
public class LocalizedTextServiceSupplementaryFileSource
|
|
|
|
|
|
{
|
2017-07-20 11:21:28 +02:00
|
|
|
|
|
2015-06-15 17:13:34 +02:00
|
|
|
|
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; }
|
|
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|