mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
13 lines
280 B
Go
13 lines
280 B
Go
package bamboohr
|
|
|
|
import ()
|
|
|
|
/*
|
|
* 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"`
|
|
}
|