25 lines
440 B
C#
25 lines
440 B
C#
namespace zero.Metadata;
|
|
|
|
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; }
|
|
}
|