diff options
Diffstat (limited to 'lib/model/device/device.dart')
-rw-r--r-- | lib/model/device/device.dart | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/lib/model/device/device.dart b/lib/model/device/device.dart index 98445fa..577ac9e 100644 --- a/lib/model/device/device.dart +++ b/lib/model/device/device.dart @@ -1,5 +1,20 @@ +// Copyright (C) 2025, uvok cheetah +// +// This program is free software: you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program. If not, see <https://www.gnu.org/licenses/>. + /// Represents a (badge) device to be connected to. -abstract class Device { +abstract interface class Device { String? get name; String? get address; int? get rssi; |