21 lines
475 B
C#
21 lines
475 B
C#
using Knoks.Core.Entities.Interfaces;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Knoks.Core.Entities
|
|
{
|
|
public class SiteMeta : IApiResult
|
|
{
|
|
public string Header { get; set; }
|
|
public string Description { get; set; }
|
|
public string Url { get; set; }
|
|
public string Image { get; set; }
|
|
public string PublishedBy { get; set; }
|
|
public DateTime Published { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|