Проект и модели

This commit is contained in:
2025-02-25 13:40:10 +04:00
parent 5fd3fff9b1
commit 651c170ce2
10 changed files with 193 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MagicCarpetDatabase.Models;
internal class Salary
{
public required string Id { get; set; } = Guid.NewGuid().ToString();
public required string EmployeeId { get; set; }
public DateTime SalaryDate { get; set; }
public double EmployeeSalary { get; set; }
}