7 lines
151 B
Go
7 lines
151 B
Go
package model
|
|
|
|
type SessionIdentifier struct {
|
|
ClientID string `bson:"clientId" json:"clientId"`
|
|
DeviceID string `bson:"deviceId" json:"deviceId"`
|
|
}
|