package dto import ( "leafdev.top/Leaf/leaf-library-3/internal/dto/user" ) type CurrentUserResponse struct { IP string `json:"ip"` Valid bool `json:"valid"` UserEmail string `json:"userEmail"` UserId user.ID `json:"userId"` UserName string `json:"userName"` }