PWA Fundvelo der Caritas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserData.cs 928B

123456789101112131415161718192021222324
  1. using System.ComponentModel;
  2. using System.Runtime.CompilerServices;
  3. namespace CaritasPWA.Shared {
  4. // The class that stores the user settings
  5. public class UserData {
  6. private string firstname;
  7. private string lastname;
  8. private string address;
  9. private string zip;
  10. private string city;
  11. private string phone;
  12. private string email;
  13. public string Firstname { get => firstname; set { firstname = value; } }
  14. public string Lastname { get => lastname; set { lastname = value; } }
  15. public string Address { get => address; set { address = value; } }
  16. public string Zip { get => zip; set { zip = value; } }
  17. public string City { get => city; set { city = value; } }
  18. public string Phone { get => phone; set { phone = value; } }
  19. public string Email { get => email; set { email = value; } }
  20. }
  21. }