CardLocation.cs 554 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace MoyaAdminLib
{
    public class CardLocation
    {
        private Card card;
        public Card Card { get { return card; } set { card = value; } }

        private int book;
        public int Book { get { return book; } set { book = value; } }

        private int page;
        public int Page { get { return page; } set { page = value; } }

        private int slot;
        public int Slot { get { return slot; } set { slot = value; } }


    }
}