using System; using System.Collections.Generic; namespace SUISS.Cloud { public class Inbox { public Inbox(IList newGifts) { this.gifts = newGifts; } public IList gifts { get; private set; } } }