tesses-cms/Tesses.CMS/Show.cs

37 lines
1.1 KiB
C#
Raw Normal View History

2024-01-04 02:53:13 +00:00
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Tesses.CMS
{
public class Show
{
[JsonIgnore]
public long Id {get;set;}
2024-07-28 22:59:28 +00:00
[JsonProperty("proper_name")]
2024-01-04 02:53:13 +00:00
public string ProperName {get;set;}="";
2024-07-28 22:59:28 +00:00
[JsonProperty("name")]
2024-01-04 02:53:13 +00:00
public string Name {get;set;}="";
[JsonIgnore]
public long UserId {get;set;}
2024-07-28 22:59:28 +00:00
[JsonProperty("creation_time")]
2024-08-10 18:32:16 +00:00
public DateTime CreationTime {get;set;} = DateTime.Now;
2024-07-28 22:59:28 +00:00
[JsonProperty("last_updated_time")]
2024-08-10 18:32:16 +00:00
public DateTime LastUpdated {get;set;} = DateTime.Now;
2024-07-28 22:59:28 +00:00
[JsonProperty("description")]
2024-01-04 02:53:13 +00:00
public string Description {get;set;}="";
public object Scriban(CMSConfiguration configuration,string user)
{
return new {
Proper = System.Web.HttpUtility.HtmlEncode( ProperName),
Name = System.Web.HttpUtility.HtmlEncode(Name),
Description = System.Web.HttpUtility.HtmlEncode(Description),
Thumbnail = $"{configuration.Root.TrimEnd('/')}/content/{user}/show/{Name}/thumbnail.jpg"
};
}
}
}