using System; using System.Collections.Generic; namespace EventPartnerGather { public class EventPartnerGatherCache { // public DateTime? RecommendListExpireTime { get; set; } // public List Recommend { get; set; } // public bool IsFirstTimeOpen = true; // public Dictionary DisplayScore { get; set; } /// /// List of players that invited 'me' /// // public List ListInvitedBy { get; set; } public Dictionary> ActionQ { get; set; } /// /// List of players that was invited by 'me' /// // public List ListInvitation { get; set; } public List RefusedPartnerIds { get; set; } } }