Files
back_cantanBuilding/Assets/Scripts/DataCenter/TimedEventData.cs
2026-05-26 16:15:54 +08:00

18 lines
445 B
C#

using System;
public class TimedEventData : ITimedEventEntranceData
{
public int TicketCount { get; set; }
public DateTime ExpiryTime { get; set; }
public TimeSpan RemainingTime { get; set; }
public bool IsActive { get; set; }
}
public interface ITimedEventEntranceData
{
public int TicketCount { get; }
public DateTime ExpiryTime { get; }
public TimeSpan RemainingTime { get; }
public bool IsActive { get; }
}