1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/bamboohr/employee.go
2018-06-04 14:27:05 +08:00

11 lines
269 B
Go

package bamboohr
/*
* Note: this currently implements the minimum number of fields to fulfill the Away functionality.
* Undoubtedly there are more fields than this to an employee
*/
type Employee struct {
ID int `xml:"id,attr"`
Name string `xml:",chardata"`
}