mirror of
https://github.com/bitwarden/mobile
synced 2025-12-26 13:13:28 +00:00
11 lines
178 B
C#
11 lines
178 B
C#
using System;
|
|
|
|
namespace Bit.App.Models
|
|
{
|
|
public abstract class Cipher
|
|
{
|
|
public string Id { get; set; }
|
|
public CipherString Name { get; set; }
|
|
}
|
|
}
|