diff --git a/back/domain/types.go b/back/domain/types.go index 4809e10..9f7c79e 100644 --- a/back/domain/types.go +++ b/back/domain/types.go @@ -45,12 +45,14 @@ type UserGroup struct { } type MoneyPool struct { - ID string `db:"id"` - Name string `db:"name"` - Description string `db:"description"` - Type string `db:"type"` - OwnerID string `db:"owner_id"` - Emoji string `db:"emoji"` + ID string `db:"id"` + Name string `db:"name"` + Description string `db:"description"` + Type string `db:"type"` + OwnerID string `db:"owner_id"` + Emoji string `db:"emoji"` + IsDeleted bool `db:"is_deleted"` + DeletedAt time.Time `db:"deleted_at"` } type MoneyProvider struct {