Speaker.cs 378 B

123456789101112131415161718
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace DevDaysSpeakers.Model
  7. {
  8. public class Speaker
  9. {
  10. //Add speaker attributes here
  11. //Azure information for version
  12. [Microsoft.WindowsAzure.MobileServices.Version]
  13. public string AzureVersion { get; set; }
  14. }
  15. }