Koktelok/Koktel.cs

19 lines
397 B
C#
Raw Permalink Normal View History

2024-09-17 10:56:03 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Koktelok
{
internal abstract class Koktel
{
public string Nev { get; set; }
public abstract string Keveres();
public void Hozzavalok()
{
Console.WriteLine($"A {Nev} koktélhoz");
}
}
}