2026-04-07 14:23:29 +02:00
|
|
|
namespace Finch.Metadata;
|
2024-02-06 16:00:44 +01:00
|
|
|
|
|
|
|
|
public class Metadata
|
|
|
|
|
{
|
|
|
|
|
public string AppVersion { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Title { get; set; }
|
|
|
|
|
|
|
|
|
|
public string PageName { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Description { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Image { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Robots { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Icon { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Url { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Author { get; set; }
|
|
|
|
|
|
|
|
|
|
//public string Schema { get; set; }
|
|
|
|
|
}
|