AppActs.API.Model.Event.ScreenSummary.ScreenSummary C# (CSharp) 메소드

ScreenSummary() 공개 메소드

public ScreenSummary ( Event eventItem ) : System
eventItem Event
리턴 System
        public ScreenSummary(Event eventItem)
            : base(eventItem)
        {
            this.Durations = new List<DurationAggregate>();
            this.Durations.Add(new DurationAggregate(eventItem.ScreenName, eventItem.Length / 1000));
        }
ScreenSummary