using Newtonsoft.Json; namespace backend.DTOs { public class CreateUserRequest { [JsonProperty] public string Email { get; set; } [JsonProperty] public string Password { get; set; } [JsonProperty] public bool IsConfirmed { get; set; } } }