コード例 #1
0
 internal ServiceRespond(ServiceRespondStatus status, string key, string value)
 {
     Status   = status;
     Messages = new Dictionary <string, string> {
         { key, value }
     };
 }
コード例 #2
0
 internal UserServiceRespond(ServiceRespondStatus status, Dictionary <string, string> message, User user = null) : base(status, message)
 {
     User = user;
 }
コード例 #3
0
 public MatchServiceResponse(ServiceRespondStatus status, Dictionary <string, string> message, Match match = null) : base(status, message)
 {
     Match = match;
 }
コード例 #4
0
 internal ServiceRespond(ServiceRespondStatus status, Dictionary <string, string> messages)
 {
     Status   = status;
     Messages = messages;
 }