Skip to content
Permalink
fa534784b6
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
20 lines (19 sloc) 546 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; }
public int PayId { get; set; }
}
}