Skip to content
Permalink
fd752dc9aa
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
18 lines (17 sloc) 463 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; }
}
}