blob: dd4172881baf6c2372aef244c927eddc5122423a [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package discovery
import (
"io/v/android/apps/syncslides/db"
)
// Who's presenting, and what are they presenting?
type Presentation struct {
Deck db.VDeck
Person db.VPerson
DeckId string
PresentationId string
SyncgroupName string
}
type Participant interface {
Get() (Presentation | error)
}