20 lines
553 B
C#
20 lines
553 B
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Knoks.Core.Entities
|
|
{
|
|
public class KnokAnalysis
|
|
{
|
|
//[JsonIgnore]
|
|
//public int AnalysisId { get; set; }
|
|
public string Header { get; set; }
|
|
public string Description { get; set; }
|
|
public KnokImage Image { get; set; }
|
|
//public KnokReferences References { get; set; }
|
|
public string References { get; set; }// Json for all
|
|
public IEnumerable<AnalysisTag> Tags { get; set; }
|
|
}
|
|
}
|