summaryrefslogtreecommitdiff
path: root/lib/model
diff options
context:
space:
mode:
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";