bitwarden-android/src/Core/Models/Domain/Cipher.cs

15 lines
331 B
C#
Raw Normal View History

2019-04-12 06:57:41 +03:00
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; }
2019-04-12 17:06:47 +03:00
public Login Login { get; set; }
2019-04-12 06:57:41 +03:00
}
}