Dodaj pliki projektów.

This commit is contained in:
Krzysztof KrzysiekSiemv Smaga
2024-11-25 22:42:31 +01:00
parent 133b8199db
commit 7581d5df42
58 changed files with 1644 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace DatabaseConnection.Model
{
public class Worker
{
public int Id { get; set; }
public string? Name { get; set; }
public string? Surname { get; set; }
public string? StartOfWorking { get; set; }
public string? Position { get; set; }
public double HourlyRate { get; set; }
public string? EndOfWorking { get; set; }
}
}