16 lines
355 B
C#
16 lines
355 B
C#
using Unity.Services.Analytics;
|
|
|
|
namespace DanieleMarotta.RiversongCodeShowcase
|
|
{
|
|
public sealed class SessionStartedAnalyticsEvent : Event
|
|
{
|
|
public SessionStartedAnalyticsEvent() : base("session_started")
|
|
{
|
|
}
|
|
|
|
public string SessionId
|
|
{
|
|
set => SetParameter("session_id", value);
|
|
}
|
|
}
|
|
} |