core/crm-core/internal/domain/notes/note.go
2025-12-27 14:32:00 -03:00

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
}