summaryrefslogtreecommitdiff
path: root/lib/model
diff options
context:
space:
mode:
authoruvok2025-08-01 14:09:13 +0200
committeruvok2025-08-01 14:09:13 +0200
commit4f16cec26362b1f6f2fc77abd1279955c537c4a0 (patch)
tree68f1858328fd2beccf5f0ed7d81a43616b490ea7 /lib/model
parent7b8c2fe71ca07b94ce11d4fdd9b7a3aea971be67 (diff)
badgetemplate->motive
Diffstat (limited to 'lib/model')
-rw-r--r--lib/model/badge_motive.dart (renamed from lib/model/badge_template.dart)4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/model/badge_template.dart b/lib/model/badge_motive.dart
index 2ca8aa6..0fd2039 100644
--- a/lib/model/badge_template.dart
+++ b/lib/model/badge_motive.dart
@@ -13,11 +13,11 @@
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
-class BadgeTemplate {
+class BadgeMotive {
final int id;
final String description;
- const BadgeTemplate(this.id, this.description);
+ const BadgeMotive(this.id, this.description);
@override
String toString() => "$id - $description";