child_ref.go 153 B

123456789
  1. package biz
  2. type ChildRef struct {
  3. UserID, ChildID string
  4. }
  5. func newChildRef(userId, childId string) *ChildRef {
  6. return &ChildRef{userId, childId}
  7. }