Created
April 18, 2018 07:27
-
-
Save pmikstacki/f7dc9e93999cda0b8e30a8c3d389c51f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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