chromium/ios/chrome/browser/ui/settings/password/password_issues/password_issue_content_item.h

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef IOS_CHROME_BROWSER_UI_SETTINGS_PASSWORD_PASSWORD_ISSUES_PASSWORD_ISSUE_CONTENT_ITEM_H_
#define IOS_CHROME_BROWSER_UI_SETTINGS_PASSWORD_PASSWORD_ISSUES_PASSWORD_ISSUE_CONTENT_ITEM_H_

#import "ios/chrome/browser/shared/ui/table_view/cells/table_view_url_item.h"
#import "ios/chrome/browser/ui/settings/password/password_issues/password_issue.h"

// Table view item used by `PasswordIssuesTableViewController`. It is created to
// hold `PasswordIssueWithForm`.
@interface PasswordIssueContentItem : TableViewURLItem

// Associated password issue. Settings this property will change `title` and
// `detailText`.
@property(nonatomic, strong) PasswordIssue* password;

@end

#endif  // IOS_CHROME_BROWSER_UI_SETTINGS_PASSWORD_PASSWORD_ISSUES_PASSWORD_ISSUE_CONTENT_ITEM_H_