13 lines
351 B
C#
13 lines
351 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class EventPartnerStatueEntranceData
|
|
{
|
|
public ITimerContext TimerContext { get; set; }
|
|
public string IconUrl { get; set; }
|
|
public int TicketCount { get; set; }
|
|
public bool HasInvitation { get; set; }
|
|
public bool HasPartnerScore { get; set; }
|
|
}
|