Example #1
0
        public static TwitchActionModel CreateUserAction(TwitchActionType type, string username)
        {
            TwitchActionModel action = new TwitchActionModel(type);

            action.Username = username;
            return(action);
        }
Example #2
0
 private TwitchActionModel(TwitchActionType type)
     : base(ActionTypeEnum.Twitch)
 {
     this.ActionType = type;
 }