10 lines
253 B
C#
10 lines
253 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class SettingsViewModel
|
|
{
|
|
public UserConfig UserConfig { get; set; }
|
|
public List<string> UILanguages { get; set; }
|
|
public Sponsors Sponsors { get; set; } = new Sponsors();
|
|
}
|
|
}
|