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