using System;
using System.Runtime.Serialization;
using Umbraco.Core.Services;
namespace Umbraco.Core.Models
{
///
/// Represents a Partial View file
///
[Serializable]
[DataContract(IsReference = true)]
public class PartialView : File, IPartialView
{
public PartialView(string path)
: this(path, null)
{ }
internal PartialView(string path, Func getFileContent)
: base(path, getFileContent)
{ }
internal PartialViewType ViewType { get; set; }
}
}