mirror of
https://github.com/bitwarden/mobile
synced 2025-12-10 21:33:36 +00:00
13 lines
363 B
C#
13 lines
363 B
C#
namespace Bit.App.Models.Api
|
|
{
|
|
public class CardDataModel : CipherDataModel
|
|
{
|
|
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; }
|
|
}
|
|
}
|