Knocks/BackEnd/Knoks.Core/Entities/Args/KnokCurrentlyPublishedArgs.cs

15 lines
329 B
C#

using Knoks.Framework.DataAccess;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Text;
namespace Knoks.Core.Entities.Args
{
public class KnokCurrentlyPublishedArgs : KnokBaseFilterArgs
{
public bool? Losing { get; set; }
public bool? Gaining { get; set; }
}
}