Skip to content

Instantly share code, notes, and snippets.

@pmikstacki
Created April 18, 2018 07:27
Show Gist options
  • Save pmikstacki/f7dc9e93999cda0b8e30a8c3d389c51f to your computer and use it in GitHub Desktop.
Save pmikstacki/f7dc9e93999cda0b8e30a8c3d389c51f to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp6
{
public class Ksiazka
{
private string tytul;
private DateTime data;
public string Tytul
{
get { return tytul; }
set { tytul = value; }
}
public DateTime Data
{
get { return data; }
set { data = value; }
}
public Ksiazka(string tytul, DateTime data)
{
Tytul = tytul;
Data = data;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment