1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-06 10:34:07 +00:00

mobile platform utils

This commit is contained in:
Kyle Spearrin
2019-04-09 23:24:03 -04:00
parent 36780c5ef8
commit 9e51c46522
11 changed files with 257 additions and 52 deletions

View File

@@ -0,0 +1,12 @@
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; }
}
}