15 lines
263 B
Go
15 lines
263 B
Go
package member
|
|
|
|
type ReadListDto struct {
|
|
ReferenceType ReferenceType `json:"-"`
|
|
PathValue1 string `json:"-"`
|
|
PathValue2 string `json:"-"`
|
|
}
|
|
|
|
type ReferenceType string
|
|
|
|
const (
|
|
RTNik ReferenceType = "nik"
|
|
RTBpjs ReferenceType = "bpjs"
|
|
)
|