Advertisement
mjc65

Tennis

Apr 22nd, 2020
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.21 KB | None | 0 0
  1. public class Match
  2. {
  3.     public Match()
  4.     {
  5.         Location = "unknown";
  6.         //Console.WriteLine("Location = " + Location);
  7.     }
  8.  
  9.     public string Location { get; set; }
  10.  
  11.     public DateTime? MatchDate { get; set; }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement