mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
11 lines
362 B
C#
11 lines
362 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class Sponsors
|
|
{
|
|
public List<string> LifeTime { get; set; } = new List<string>();
|
|
public List<string> Bronze { get; set; } = new List<string>();
|
|
public List<string> Silver { get; set; } = new List<string>();
|
|
public List<string> Gold { get; set; } = new List<string>();
|
|
}
|
|
}
|