public UserRequestModel(string userId, string onUserId, string token, UserRequestEnum requestType, string postId = null)
 {
     this.userId      = userId;
     this.onUserId    = onUserId;
     this.requestType = requestType;
     this.token       = token;
     this.postId      = postId;
 }
Exemple #2
0
 public UserRequestModel(string userId, string onUserId, UserRequestEnum requestType)
 {
     this.userId      = userId;
     this.onUserId    = onUserId;
     this.requestType = requestType;
 }