27 lines
1003 B
C#
27 lines
1003 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace EventPartnerGather
|
|
{
|
|
public class EventPartnerGatherCache
|
|
{
|
|
// public DateTime? RecommendListExpireTime { get; set; }
|
|
|
|
// public List<EventPartnerScrollViewItem.ScrollViewItemInfo> Recommend { get; set; }
|
|
// public bool IsFirstTimeOpen = true;
|
|
|
|
// public Dictionary<int, (int, int)> DisplayScore { get; set; }
|
|
/// <summary>
|
|
/// List of players that invited 'me'
|
|
/// </summary>
|
|
// public List<EventPartnerScrollViewItem.ScrollViewItemInfo> ListInvitedBy { get; set; }
|
|
public Dictionary<int, Queue<EventPartnerData.EventBuildBotAddScoreAction>> ActionQ { get; set; }
|
|
/// <summary>
|
|
/// List of players that was invited by 'me'
|
|
/// </summary>
|
|
// public List<EventPartnerScrollViewItem.ScrollViewItemInfo> ListInvitation { get; set; }
|
|
|
|
|
|
public List<string> RefusedPartnerIds { get; set; }
|
|
}
|
|
} |