Skip to content

Instantly share code, notes, and snippets.

/plik.cs Secret

Created November 17, 2016 13:24
Show Gist options
  • Save anonymous/9c52246d9bde724b3110e2861c55c4d0 to your computer and use it in GitHub Desktop.
Save anonymous/9c52246d9bde724b3110e2861c55c4d0 to your computer and use it in GitHub Desktop.
class PaczkaZwierzat
{
public List<Zwierze> Zwierzeta { get; set; }
}
class Zwierze
{
public string Nazwa { get; set; }
}
class ZwierzeZyrafa : Zwierze
{
}
class ZwierzeSlon : Zwierze
{
}
<PaczkaZwierzat>
<Zwierzeta>
<Zwierze Type="Zyrafa">
<Nazwa>Fajna zyrafa</Name>
</Zwierze>
<Zwierze Type="Slon">
<Nazwa>Fajny slon</Name>
</Zwierze>
<Zwierze Type="Zyrafa">
<Nazwa>Fajna zyrafa 2</Name>
</Zwierze>
<Zwierze Type="Slon">
<Nazwa>Fajny slon 2</Name>
</Zwierze>
</Zwierzeta>
</PaczkaZwierzat>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment