Speaker.cs 634 B

1234567891011121314151617181920212223
  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. public string Id { get; set; }
  12. public string Name { get; set; }
  13. public string Description { get; set; }
  14. public string Website { get; set; }
  15. public string Title { get; set; }
  16. public string Avatar { get; set; }
  17. //Azure information for version
  18. [Microsoft.WindowsAzure.MobileServices.Version]
  19. public string AzureVersion { get; set; }
  20. }
  21. }