Files
Check/MagicCarpetProject/MagicCarpetContracts/ViewModels/EmployeeSalaryByPeriodViewModel.cs
2025-04-23 17:33:09 +04:00

16 lines
398 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetContracts.ViewModels;
public class EmployeeSalaryByPeriodViewModel
{
public required string EmployeeFIO { get; set; }
public double TotalSalary { get; set; }
public DateTime FromPeriod { get; set; }
public DateTime ToPeriod { get; set; }
}