40 lines
1.2 KiB
C#
40 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Tesses.CMS
|
|
{
|
|
public class Project
|
|
{
|
|
[JsonIgnore]
|
|
public long Id {get;set;}
|
|
|
|
[JsonProperty("proper_name")]
|
|
public string ProperName {get;set;}="";
|
|
[JsonProperty("name")]
|
|
public string Name {get;set;}="";
|
|
[JsonIgnore]
|
|
public long UserId {get;set;}
|
|
[JsonProperty("creation_time")]
|
|
public DateTime CreationTime {get;set;}
|
|
[JsonProperty("last_updated_time")]
|
|
public DateTime LastUpdated {get;set;}
|
|
[JsonProperty("description")]
|
|
public string Description {get;set;}="";
|
|
[JsonProperty("source")]
|
|
public string Source {get;set;}="";
|
|
[JsonProperty("license")]
|
|
public string License {get;set;}="";
|
|
|
|
public object Scriban(string thumbnail)
|
|
{
|
|
return new {
|
|
Proper = System.Web.HttpUtility.HtmlEncode( ProperName),
|
|
Name = System.Web.HttpUtility.HtmlEncode(Name),
|
|
Description = System.Web.HttpUtility.HtmlEncode(Description),
|
|
Thumbnail = thumbnail
|
|
};
|
|
}
|
|
|
|
}
|
|
} |