mirror of
https://github.com/NotAKidoS/NAK_CVR_Mods.git
synced 2025-09-02 06:19:22 +00:00
22 lines
No EOL
448 B
C#
22 lines
No EOL
448 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace NAK.ShareBubbles.API.Responses;
|
|
|
|
public class ActiveSharesResponse
|
|
{
|
|
[JsonProperty("value")]
|
|
public List<ShareUser> Value { get; set; }
|
|
}
|
|
|
|
// Idk why not just reuse UserDetails
|
|
public class ShareUser
|
|
{
|
|
[JsonProperty("image")]
|
|
public string Image { get; set; }
|
|
|
|
[JsonProperty("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
} |