8 lines
169 B
Go
Raw Normal View History

2023-02-15 01:34:22 +05:30
package model
type CreatePATRequestBody struct {
Name string `json:"name"`
Role string `json:"role"`
ExpiresInDays int64 `json:"expiresInDays"`
}