mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 07:09:21 +01:00
14 lines
296 B
Go
14 lines
296 B
Go
|
// Copyright 2023 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package structs
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// BlockedUser represents a blocked user.
|
||
|
type BlockedUser struct {
|
||
|
BlockID int64 `json:"block_id"`
|
||
|
// swagger:strfmt date-time
|
||
|
Created time.Time `json:"created_at"`
|
||
|
}
|