using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServerOverall.Server.Updates.ServerToClient { /// /// Хранит новое сосотяние анимации /// public class UpdateAnimation : UpdateData { public UpdateAnimation() { UpdateType = "UpdateAnimation"; } public string animationId { get; set; } } }