Files
simrsx-be/internal/domain/bpjs-entities/member/dto.go
T
2025-10-16 11:26:09 +07:00

16 lines
303 B
Go

package member
type ReadListDto struct {
ReferenceType ReferenceType `json:"-"`
PathValue1 string `json:"-"`
PathValue2 string `json:"-"`
PathValue3 string `json:"-"`
}
type ReferenceType string
const (
RTNik ReferenceType = "nik"
RTBpjs ReferenceType = "bpjs"
)