Files
mapo-mono/MP.MONO.UI/Data/selectChartParams.cs
T
2022-09-28 17:29:45 +02:00

48 lines
1.1 KiB
C#

namespace MP.MONO.UI.Data
{
public class selectChartParams
{
#region Public Constructors
public selectChartParams()
{ }
#endregion Public Constructors
#region Public Properties
public int CurrPage { get; set; } = 1;
public DateTime? dtMax { get; set; } = null;
public DateTime? dtMin { get; set; } = null;
public int MaxRecord { get; set; } = 100;
public bool setFreqDur { get; set; } = true;
#endregion Public Properties
#region Public Methods
public override bool Equals(object obj)
{
if (!(obj is selectChartParams item))
return false;
if (MaxRecord != item.MaxRecord)
return false;
if (CurrPage != item.CurrPage)
return false;
if (setFreqDur != item.setFreqDur)
return false;
return true;
}
public override int GetHashCode()
{
return base.GetHashCode();
}
#endregion Public Methods
}
}