Files
mixtape/zero.Debug/TestData/Pages/Partials/MetaPagePartial.cs
T

22 lines
407 B
C#
Raw Normal View History

2020-05-12 13:42:01 +02:00
using zero.Core.Entities;
namespace zero.TestData
{
public class MetaPagePartial
{
public bool HideInTitle { get; set; }
public string TitleOverride { get; set; }
public string TitleOverrideAll { get; set; }
public string SeoDescription { get; set; }
public string SeoImageId { get; set; }
2020-05-12 13:42:01 +02:00
public bool NoFollow { get; set; }
public bool NoIndex { get; set; }
}
}