~ruther/NosSmooth.Comms

ref: 2023.6 NosSmooth.Comms/src/Local/NosSmooth.Comms.Inject/Messages/FollowMessage.cs -rw-r--r-- 434 bytes
edcd26a2 — Rutherther feat: move to new injection supporting passing in data and returning integer 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
//
//  FollowMessage.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace NosSmooth.Comms.Inject.Messages;

/// <summary>
/// Follow the given entity, unfollow if null.
/// </summary>
/// <param name="EntityId">The id of the entity, unfollow if null.</param>
public record FollowMessage(long? EntityId);