mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
10 lines
214 B
C#
10 lines
214 B
C#
namespace Bloxstrap.Models.APIs.Roblox
|
|
{
|
|
// lmao its just one property
|
|
public class UniverseIdResponse
|
|
{
|
|
[JsonPropertyName("universeId")]
|
|
public long UniverseId { get; set; }
|
|
}
|
|
}
|