mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
12 lines
314 B
C#
12 lines
314 B
C#
namespace Bloxstrap.Models.APIs.Config
|
|
{
|
|
public class SupporterGroup
|
|
{
|
|
[JsonPropertyName("columns")]
|
|
public int Columns { get; set; } = 0;
|
|
|
|
[JsonPropertyName("supporters")]
|
|
public List<Supporter> Supporters { get; set; } = Enumerable.Empty<Supporter>().ToList();
|
|
}
|
|
}
|