Skip to content

Commit

Permalink
Created Category data class
Browse files Browse the repository at this point in the history
  • Loading branch information
aritra-tech committed Mar 17, 2024
1 parent 509afca commit b637af6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
package com.geekymusketeers.uncrack.domain.model

import androidx.compose.ui.graphics.Color

data class Category(
val categoryId: Int,
val icon: Int,
val text: String,
val color: Color
)
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
<string name="manager_passwords">Manager Passwords</string>
<string name="browser">Browser</string>
<string name="card">Card</string>
<string name="favourites">Favourites</string>
<string name="recently_used">Recently Used</string>
<string-array name="accounts">
<item>Others</item>
<item>PayPal</item>
Expand Down

0 comments on commit b637af6

Please sign in to comment.