chat/internal/domain/entity/room.go

15 lines
197 B
Go
Raw Normal View History

2025-12-31 09:36:02 +00:00
package entity
// RoomMember 房間成員資訊
type RoomMember struct {
RoomID string
UID string
}
// MatchResult 配對結果
type MatchResult struct {
RoomID string
Members []string
}