1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- namespace ET.Server
- {
-
-
-
- public class Struct
- {
-
-
-
- public class Kezi
- {
-
- public int Type { get; set; }
-
- public int Card { get; set; }
-
- public long PlayerId { get; set; }
- public Kezi(int type, int card, long playerId)
- {
- this.Type = type;
- this.Card = card;
- this.PlayerId = playerId;
- }
- }
-
- public class HuRes
- {
- public int Type { get; set; }
- public int Jiang { get; set; }
- public HuRes()
- {
- }
- public HuRes(int type, int jiang)
- {
- this.Type = type;
- this.Jiang = jiang;
- }
- }
- }
- }
|