mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
7 lines
191 B
Go
7 lines
191 B
Go
package models
|
|
|
|
// ClearDataRequest represents all parameters of clear user data request
|
|
type ClearDataRequest struct {
|
|
Password string `json:"password" binding:"omitempty,min=6,max=128"`
|
|
}
|