add a missing file

This commit is contained in:
Andreas Zweili 2018-01-25 18:57:19 +01:00
parent 0ae15894a1
commit b735923ebd
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace notenbewertung
{
class Testresultat
{
public double Note { get; set; }
public Testresultat(double d)
{
this.Note = d;
}
}
}