示例#1
0
        internal static RestSubscription Create(BaseTwitchClient client, Model model)
        {
            var entity = new RestSubscription(client, model.Id);

            entity.Update(model);
            return(entity);
        }
示例#2
0
 public int GetHashCode(RestSubscription obj)
 => obj.GetHashCode();
示例#3
0
 public bool Equals(RestSubscription x, RestSubscription y)
 => x.Id == y.Id;