blob: ece1ae8fa4488bcd34e2e23a7e5d2e47deef37a9 [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.
import '../models/all.dart' as model;
// Represents an advertised presentation of a deck.
class PresentationAdvertisement {
PresentationAdvertisement(
this._key, this._deck, this._syncgroupName, this._thumbnailSyncgroupName);
// TODO(aghassemi): Fix inconsistencies between key and id everywhere.
String _key;
String get key => _key;
model.Deck _deck;
model.Deck get deck => _deck;
String _syncgroupName;
String get syncgroupName => _syncgroupName;
String _thumbnailSyncgroupName;
String get thumbnailSyncgroupName => _thumbnailSyncgroupName;
}