This repository has been archived on 2020-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
ibz/oop/notenbewertung/notenbewertung/Klasse.cs

19 lines
378 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace notenbewertung
{
class Klasse : List<Person>
{
public string Klassenbezeichnung { get; set; }
public Klasse(string _Klassenbezeichnung)
{
this.Klassenbezeichnung = _Klassenbezeichnung;
}
}
}