namespace ServerOverall.Server.Updates.ServerToClient; /// /// При изменении возможности повзаимодействовать с объектом /// /// /// public class UpdateInteractionReady(int idEntity, bool isReady) : UpdateData { public int IdEntity { get; set; } = idEntity; public string UpdateType { get; set; } = "UpdateInteractionReady"; public bool IsReady { get; set; } = isReady; }