mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-13 16:51:29 -07:00
12 lines
275 B
C#
12 lines
275 B
C#
namespace Bloxstrap.Models.APIs.Config
|
|
{
|
|
public class SupporterData
|
|
{
|
|
[JsonPropertyName("columns")]
|
|
public int Columns { get; set; }
|
|
|
|
[JsonPropertyName("supporters")]
|
|
public List<Supporter> Supporters { get; set; } = null!;
|
|
}
|
|
}
|