namespace Umbraco.Web.Models.ContentEditing { /// /// Represents an uploaded file for a particular property /// public class ContentItemFile { /// /// The property id associated with the file /// public int PropertyId { 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; } } }