1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-18 01:03:24 +00:00
Files
mobile/src/Core/Models/View/ItemView.cs
2022-04-26 17:21:17 +02:00

15 lines
323 B
C#

using System.Collections.Generic;
using Bit.Core.Enums;
namespace Bit.Core.Models.View
{
public abstract class ItemView : View
{
public ItemView() { }
public abstract string SubTitle { get; }
public abstract List<KeyValuePair<string, LinkedIdType>> LinkedFieldOptions { get; }
}
}