mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
13 lines
No EOL
498 B
C#
13 lines
No EOL
498 B
C#
using ABI_RC.Core.Networking.API.Responses;
|
|
|
|
namespace NAK.ShareBubbles.API.Responses;
|
|
|
|
/// Same as PedestalInfoResponse, but with an additional field for publication state, if you could not tell by the name.
|
|
/// TODO: actually waiting on luc to add Published to PedestalInfoResponse
|
|
[Serializable]
|
|
public class PedestalInfoResponseButWithPublicationState : UgcResponse
|
|
{
|
|
public UserDetails User { get; set; }
|
|
public bool Permitted { get; set; }
|
|
public bool Published { get; set; }
|
|
} |