namespace Umbraco.Web.Models.ContentEditing
{
///
/// Represents an uploaded file for a particular property
///
public class ContentItemFile
{
///
/// The property alias associated with the file
///
public string PropertyAlias { get; set; }
///
/// The original file name
///
public string FileName { get; set; }
///
/// The file path for the uploaded file for where the MultipartFormDataStreamProvider has saved the temp file
///
public string TempFilePath { get; set; }
}
}