Move services infra -> core

This commit is contained in:
Paul Johnson
2022-01-14 10:57:31 +00:00
parent 39c3fecc45
commit 2a4c974568
41 changed files with 88 additions and 89 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.IO;
namespace Umbraco.Cms.Core.Services
{
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; }
}
}