Files
YandexMusic/YandexMusic.API/Models/Ynison/Messages/YYnisonUpdateMessage.cs
2026-04-10 12:12:33 +03:00

10 lines
350 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YandexMusic.API.Models.Ynison.Messages
{
public class YYnisonUpdateMessage : YYnisonMessage
{
#warning нужен enum
public string ActivityInterceptionType { get; set; } = "DO_NOT_INTERCEPT_BY_DEFAULT";
public decimal PlayerActionTimestampMs { get; set; } = DateTimeOffset.Now.ToUnixTimeMilliseconds();
}
}