blob: 925fc8afa3329de8c7adb64c89b0c636593c991c [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 {
// 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;
PresentationAdvertisement(
this._key, this._deck, this._syncgroupName, this._thumbnailSyncgroupName);
}