Koktelok/Martini.cs

21 lines
425 B
C#
Raw 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 class Martini : Koktel
{
public override string Keveres()
{
return "A martinit nem tudom hogyan kell elkészíteni.";
}
public Martini(string Nev)
{
this.Nev = Nev;
}
}
}