WingMan – Rev 32

Subversion Repositories:
Rev:
using System.Collections.Generic;

namespace WingMan.Bindings
{
    public class RemoteKeyBinding
    {
        public RemoteKeyBinding()
        {
        }

        public RemoteKeyBinding(string nick, string name, List<string> mouseKeyCombo)
        {
            Nick = nick;
            Name = name;
            Keys = mouseKeyCombo;
        }

        public string Nick { get; set; }

        public string Name { get; set; }

        public List<string> Keys { get; set; }
    }
}

Generated by GNU Enscript 1.6.5.90.