Skip to content
Permalink
57d7765f5f
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (18 sloc) 507 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace TeamDBAwesome.Models
{
public class Payment
{
public int CustomerId { get; set; }
public string Type { get; set; }
public string token { get; set; }
public string email { get; set; }
public string cardnum { get; set; }
// needs to be in yyyy-mm-dd format
public string expr_date { get; set; }
public int is_default { get; set; }
}
}