using Knoks.Framework.DataAccess; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Knoks.Core.Entities.Args { public class KnokPastPublishedArgs : KnokBaseFilterArgs { public bool? Gaining { get; set; } public bool? Losing { get; set; } [ProcParamIgnore] public string[] LoseStatus { get; set; } public string LoseStatusString { get { return this.LoseStatus != null ? string.Join(";", this.LoseStatus) : null; } } } }