22 lines
411 B
C#
22 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace elektronikaieszkozok
|
|
{
|
|
internal abstract class Eszköz
|
|
{
|
|
public string name { get; set; }
|
|
public string marka { get; set; }
|
|
public string allapot { get; set; }
|
|
|
|
|
|
public abstract bekapcsolas()
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|