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.
adding crypt CBComSelMemberGameInfoesController
- Loading branch information
1 parent
ee184b4
commit 56c5472
Showing
3 changed files
with
82 additions
and
36 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,41 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Web; | ||
|
||
namespace CloudBread.Models | ||
{ | ||
public class ComSelMemberGameInfoesInputParams | ||
{ | ||
public string MemberID { get; set; } | ||
public string token { get; set; } | ||
} | ||
|
||
public class ComSelMemberGameInfoesModel | ||
{ | ||
public string MemberID { get; set; } | ||
public string Level { get; set; } | ||
public string Exps { get; set; } | ||
public string Points { get; set; } | ||
public string UserSTAT1 { get; set; } | ||
public string UserSTAT2 { get; set; } | ||
public string UserSTAT3 { get; set; } | ||
public string UserSTAT4 { get; set; } | ||
public string UserSTAT5 { get; set; } | ||
public string UserSTAT6 { get; set; } | ||
public string UserSTAT7 { get; set; } | ||
public string UserSTAT8 { get; set; } | ||
public string UserSTAT9 { get; set; } | ||
public string UserSTAT10 { 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; } | ||
} | ||
} |