Themeing related

This commit is contained in:
Steven Hildreth 2018-12-12 17:23:50 -06:00
parent 9b118b66da
commit 603fca18c4

View file

@ -1,5 +1,7 @@
using Mapster;
using Newtonsoft.Json;
using Roadie.Library.Enums;
using Roadie.Library.Utility;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
@ -46,6 +48,14 @@ namespace Roadie.Library.Models
public int? Status { get; set; }
public string StatusVerbose
{
get
{
return SafeParser.ToEnum<Statuses>(this.Status).ToString();
}
}
[MaxLength(65535)]
[JsonIgnore]
[IgnoreDataMember]