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

14 lines
290 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; }
}
}