lubelog/Models/Sponsors.cs
DESKTOP-T0O5CDB\DESK-555BD 47657c0093 Added sponsor section.
2024-05-21 15:29:46 -06:00

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>();
}
}