| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Text; |
| | 4 | |
|
| | 5 | | namespace MUNity.Schema.Account |
| | 6 | | { |
| | 7 | | public class UpdateProfileRequest |
| | 8 | | { |
| 0 | 9 | | public string UserName { get; set; } |
| | 10 | |
|
| 0 | 11 | | public int UpdatedBirthdayDay { get; set; } |
| | 12 | |
|
| 0 | 13 | | public int UpdatedBirthdayMonth { get; set; } |
| | 14 | |
|
| 0 | 15 | | public int UpdatedBirthdayYear { get; set; } |
| | 16 | |
|
| 0 | 17 | | public string UpdatedCountry { get; set; } |
| | 18 | |
|
| 0 | 19 | | public string UpdatedZipCode { get; set; } |
| | 20 | |
|
| 0 | 21 | | public string UpdatedCity { get; set; } |
| | 22 | |
|
| 0 | 23 | | public string UpdatedStreet { get; set; } |
| | 24 | |
|
| 0 | 25 | | public string UpdatedHouseNumber { get; set; } |
| | 26 | |
|
| 0 | 27 | | public string UpdateForename { get; set; } |
| | 28 | |
|
| 0 | 29 | | public string UpdateLastname { get; set; } |
| | 30 | | } |
| | 31 | | } |