mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 15:45:42 +03:00
13 lines
290 B
C#
13 lines
290 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Bit.Core.Models.Domain
|
|
{
|
|
public class Cipher : Domain
|
|
{
|
|
public string Id { get; set; }
|
|
public string OrganizationId { get; set; }
|
|
public CipherString Name { get; set; }
|
|
}
|
|
}
|