Dodaj pliki projektów.

This commit is contained in:
2025-10-31 12:50:24 +01:00
parent 06b6823bd9
commit 7173a37b29
169 changed files with 53145 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
namespace Haftmittel
{
public class ClassSkladnik
{
private int _id = 0;
private string _kod = string.Empty;
private string _nazwa = string.Empty;
public int Id
{
get => _id;
set => _id = value;
}
public string Kod
{
get => _kod;
set => _kod = value;
}
public string Nazwa
{
get => _nazwa.Trim();
set => _nazwa = value;
}
}
}