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; }
|
|
|
|
|
|
2020-08-13 12:03:24 +02:00
|
|
|
public string SeoImageId { get; set; }
|
2020-05-12 13:42:01 +02:00
|
|
|
|
|
|
|
|
public bool NoFollow { get; set; }
|
|
|
|
|
|
|
|
|
|
public bool NoIndex { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|