mirror of
https://github.com/bitwarden/mobile
synced 2025-12-18 01:03:24 +00:00
15 lines
323 B
C#
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; }
|
|
}
|
|
}
|