mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-19 00:51:30 -07:00
14 lines
265 B
C#
14 lines
265 B
C#
namespace Bloxstrap.Models
|
|
{
|
|
public class RobloxAsset
|
|
{
|
|
public string? Name { get; set; }
|
|
public RobloxAssetCreator? Creator { get; set; }
|
|
}
|
|
|
|
public class RobloxAssetCreator
|
|
{
|
|
public string? Name { get; set; }
|
|
}
|
|
}
|