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/software/1_sem/se-10-collections/collections/CD.cs

14 lines
312 B
C#

namespace collections
{
public class CD
{
public string Interpret { get; set; }
public string AlbumTitel { get; set; }
public CD(string _interpret, string _albumtitel)
{
this.Interpret = _interpret;
this.AlbumTitel = _albumtitel;
}
}
}