using Knoks.Core.Entities.Args; using Knoks.Framework.Extentions; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Knoks.Core.Entities { public class Feedback { public long KnokId { get; set; } public long UserId { get; set; } public FeedbackType FeedbackType { get; set; } public string Comment { get; set; } public int? Clear { get; set; } public int? Educational { get; set; } public int? Comprehensive { get; set; } public int? KnokBenefit { get; set; } } public enum FeedbackType { Ongoing = 0, RecentlyEnded = 1 } }