14 lines
249 B
Go
14 lines
249 B
Go
package notes
|
|
|
|
import "time"
|
|
|
|
type Note struct {
|
|
ID string
|
|
TenantID string
|
|
EntityType string
|
|
EntityID string
|
|
Body string
|
|
CreatedByUserID string
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|