Files
server/src/Core/Models/Data/CipherCardData.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
356 B
C#
Raw Normal View History

2021-12-14 15:05:07 +00:00
namespace Bit.Core.Models.Data;
2022-08-29 14:53:16 -04:00
2021-12-14 15:05:07 +00:00
public class CipherCardData : CipherData
{
public CipherCardData() { }
public string CardholderName { get; set; }
public string Brand { get; set; }
public string Number { get; set; }
public string ExpMonth { get; set; }
public string ExpYear { get; set; }
public string Code { get; set; }
}