18 lines
452 B
C#
18 lines
452 B
C#
using DateTime = System.DateTime;
|
|
|
|
namespace BLAIzor.Models
|
|
{
|
|
public class WebPageContent
|
|
{
|
|
public int Id { get; set; }
|
|
public string UId { get; set; }
|
|
public string Type { get; set; }
|
|
public int SiteId { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string Content { get; set; }
|
|
public DateTime LastUpdated { get; set; }
|
|
}
|
|
}
|
|
|