niki/staffapp/service/entity.go

14 lines
174 B
Go

package service
type Staff struct {
ID int
Name string
LastName string
PhoneNumber string
}
type StaffService struct {
Staffs []Staff
NextID int
}