github.com/altipla-consulting/ravendb-go-client@v0.1.3/tests/employee_test.go (about)

     1  package tests
     2  
     3  // Employee represents an employee
     4  type Employee struct {
     5  	ID        string
     6  	FirstName string
     7  	LastName  string
     8  }
     9  
    10  func NewEmployee() *Employee {
    11  	return &Employee{}
    12  }