24 lines
714 B
C#
24 lines
714 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BS.Shared.DataContracts
|
|
{
|
|
[DebuggerDisplay("{Employee}: S{Soll} I{Ist} / K{TageKrank} U{TageUrlaub}")]
|
|
public class DienstplanerMonthlySummaryDC
|
|
{
|
|
public EmployeeDC Employee { get; set; }
|
|
public decimal Soll { get; set; }
|
|
public decimal Ist { get; set; }
|
|
public decimal Saldo { get; set; }
|
|
public decimal? ZeitkontoLetzterMonat { get; set; }
|
|
public decimal? ZeitkontoAktualisiert { get; set; }
|
|
public decimal TageUrlaub { get; set; }
|
|
public decimal TageKrank { get; set; }
|
|
|
|
}
|
|
}
|