forked from CloudBreadProject/CloudBread
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
556f3d5
commit ee184b4
Showing
3 changed files
with
95 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
|
||
namespace CloudBread.Models | ||
{ | ||
public class ComSelMemberInputParams | ||
{ | ||
public string memberID; | ||
public string token; | ||
} | ||
|
||
public class ComSelMemberModel | ||
{ | ||
public string MemberID { get; set; } | ||
public string MemberPWD { get; set; } | ||
public string EmailAddress { get; set; } | ||
public string EmailConfirmedYN { get; set; } | ||
public string PhoneNumber1 { get; set; } | ||
public string PhoneNumber2 { get; set; } | ||
public string PINumber { get; set; } | ||
public string Name1 { get; set; } | ||
public string Name2 { get; set; } | ||
public string Name3 { get; set; } | ||
public string DOB { get; set; } | ||
public string RecommenderID { get; set; } | ||
public string MemberGroup { get; set; } | ||
public string LastDeviceID { get; set; } | ||
public string LastIPaddress { get; set; } | ||
public string LastLoginDT { get; set; } | ||
public string LastLogoutDT { get; set; } | ||
public string LastMACAddress { get; set; } | ||
public string AccountBlockYN { get; set; } | ||
public string AccountBlockEndDT { get; set; } | ||
public string AnonymousYN { get; set; } | ||
public string _3rdAuthProvider { get; set; } | ||
public string _3rdAuthID { get; set; } | ||
public string _3rdAuthParam { get; set; } | ||
public string PushNotificationID { get; set; } | ||
public string PushNotificationProvider { get; set; } | ||
public string PushNotificationGroup { get; set; } | ||
public string sCol1 { get; set; } | ||
public string sCol2 { get; set; } | ||
public string sCol3 { get; set; } | ||
public string sCol4 { get; set; } | ||
public string sCol5 { get; set; } | ||
public string sCol6 { get; set; } | ||
public string sCol7 { get; set; } | ||
public string sCol8 { get; set; } | ||
public string sCol9 { get; set; } | ||
public string sCol10 { get; set; } | ||
} | ||
} |