Files
Umbraco-CMS/src/Umbraco.Infrastructure/Services/Implement/LocalizedTextServiceSupplementaryFileSource.cs
2021-02-23 12:24:51 +01:00

21 lines
537 B
C#

using System;
using System.IO;
namespace Umbraco.Cms.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; }
}
}