SzotarFeladatok/Valasztasok/Kepviselok.cs

23 lines
398 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Valasztasok
{
class Kepviselok
{
public int kerulet;
public int szavazat;
public string vezeteknev;
public string keresztnev;
public string part;
public override string ToString()
{
return vezeteknev + " " + keresztnev;
}
}
}