| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace WpfApplication19
- {
- class DailyChecker
- {
- public string header { get; set; }
- public double p1 {get; set; }
- public double p2 { get; set; }
- public double p3 { get; set; }
- public double avg { get; set; }
- public string result {get; set; }
- }
- }
|