40 lines
904 B
C#
40 lines
904 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
using BS.Shared.DataContracts;
|
|
|
|
namespace BeWo.View.Report.FLSReport
|
|
{
|
|
public class FLSOverviewDateValue
|
|
{
|
|
private string _HeaderLongValue;
|
|
|
|
public DateTime DateTime { get; set; }
|
|
|
|
public double DateValue { get; set; }
|
|
|
|
public string DateValueText { get; set; }
|
|
|
|
public string HeaderLongValue
|
|
{
|
|
get
|
|
{
|
|
if (this._HeaderLongValue == null)
|
|
{
|
|
return this.HeaderValue;
|
|
}
|
|
|
|
return this._HeaderLongValue;
|
|
}
|
|
|
|
set
|
|
{
|
|
this._HeaderLongValue = value;
|
|
}
|
|
}
|
|
|
|
public string HeaderValue { get; set; }
|
|
|
|
public List<ServiceRecordFLSOverviewDC> ServiceRecordList { get; set; }
|
|
}
|
|
} |