mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
14 lines
384 B
C#
14 lines
384 B
C#
namespace Bloxstrap.Models.APIs.Config
|
|
{
|
|
public class Supporter
|
|
{
|
|
[JsonPropertyName("imageAsset")]
|
|
public string ImageAsset { get; set; } = null!;
|
|
|
|
[JsonPropertyName("name")]
|
|
public string Name { get; set; } = null!;
|
|
|
|
public string Image => $"https://raw.githubusercontent.com/bloxstraplabs/config/main/assets/{ImageAsset}";
|
|
}
|
|
}
|