mirror of
https://github.com/bitwarden/android.git
synced 2025-01-09 17:57:34 +03:00
12 lines
336 B
C#
12 lines
336 B
C#
namespace Bit.App.Models
|
|
{
|
|
public class DialogDetails
|
|
{
|
|
public string Text { get; set; }
|
|
public string Title { get; set; }
|
|
public string ConfirmText { get; set; }
|
|
public string CancelText { get; set; }
|
|
public string Type { get; set; }
|
|
public int DialogId { get; set; }
|
|
}
|
|
}
|