Spaces:
Paused
Paused
| using System.ComponentModel.DataAnnotations; | |
| namespace Application.DTOs.UserDTOs | |
| { | |
| public class CompleteGoogleRegDTO | |
| { | |
| [] | |
| public string GoogleId { get; set; } | |
| [] | |
| public string Email { get; set; } | |
| [] | |
| public string UserName { get; set; } | |
| [] | |
| public string PhoneNumber { get; set; } | |
| [] | |
| public double Latitude { get; set; } | |
| [] | |
| public double Longitude { get; set; } | |
| public string? Address { get; set; } | |
| /// <summary> | |
| /// Optional admin registration key | |
| /// </summary> | |
| public string? AdminKey { get; set; } | |
| } | |
| } | |