elektroniakieszkozok/elektronikaieszkozok/Eszköz.cs

22 lines
411 B
C#
Raw Normal View History

2024-09-26 07:54:22 +00:00
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()
{
}
}
}