forked from slavaxom9k/PIBD-23_Fomichev_V.S._MagicCarpet
19 lines
401 B
C#
19 lines
401 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MagicCarpetContracts.DataModels;
|
|
|
|
public class EmployeeSalaryByPeriodDataModel
|
|
{
|
|
public required string EmployeeFIO { get; set; }
|
|
|
|
public double TotalSalary { get; set; }
|
|
|
|
public DateTime FromPeriod { get; set; }
|
|
|
|
public DateTime ToPeriod { get; set; }
|
|
}
|