2024-10-31 09:09:10 +01:00
|
|
|
package db
|
|
|
|
|
|
|
|
type Identifiable interface {
|
|
|
|
GetID() uint
|
|
|
|
}
|
|
|
|
|
|
|
|
type UserIdentifiable interface {
|
|
|
|
GetID() uint
|
|
|
|
GetUserID() uint
|
|
|
|
SetUserID(userID uint)
|
|
|
|
}
|
2024-11-20 17:17:03 +01:00
|
|
|
|
|
|
|
type PaymentGroup interface {
|
|
|
|
__internalBelogingToPayment()
|
|
|
|
}
|