mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
cleanup necessary namespaces and adjust namespaces for certain classes to better represent what they're for models, helpers and tools are all different and shouldnt really be under the same namespace
12 lines
251 B
C#
12 lines
251 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Bloxstrap.Models.RobloxApi
|
|
{
|
|
// lmao its just one property
|
|
public class UniverseIdResponse
|
|
{
|
|
[JsonPropertyName("universeId")]
|
|
public long UniverseId { get; set; }
|
|
}
|
|
}
|