28 lines
512 B
Plaintext
28 lines
512 B
Plaintext
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;
|
|
}
|
|
}
|
|
}
|