Changeset 13f1472 for resTools_backend/backend/DTOs
- Timestamp:
- 09/18/22 18:09:53 (2 years ago)
- Branches:
- master
- Parents:
- 49b0bbd
- Location:
- resTools_backend/backend/DTOs
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
resTools_backend/backend/DTOs/AuthenticateResponse.cs
r49b0bbd r13f1472 17 17 [JsonProperty] 18 18 public bool IsConfirmed { get; set; } 19 [JsonProperty] 20 public bool isVip { get; set; } 19 21 } -
resTools_backend/backend/DTOs/CreateMenuItemRequest.cs
r49b0bbd r13f1472 11 11 [JsonProperty] 12 12 public int Price { get; set; } 13 [JsonProperty] 14 public bool IsVipOnly { get; set; } 15 [JsonProperty] 16 public string Alergens { get; set; } 13 17 } 14 18 } -
resTools_backend/backend/DTOs/CreateUserRequest.cs
r49b0bbd r13f1472 10 10 [JsonProperty] 11 11 public string Password { get; set; } 12 13 [JsonProperty] 14 public bool IsConfirmed { get; set; } 12 15 } 13 16 } -
resTools_backend/backend/DTOs/MenuItemResponse.cs
r49b0bbd r13f1472 13 13 [JsonProperty] 14 14 public int Price { get; set; } 15 [JsonProperty] 16 public bool IsVipOnly { get; set; } 17 [JsonProperty] 18 public string Alergens { get; set; } 19 [JsonProperty] 20 public string Image { get; set; } 15 21 } 16 22 }
Note:
See TracChangeset
for help on using the changeset viewer.