mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
12 lines
235 B
C#
12 lines
235 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class UserConfigData
|
|
{
|
|
/// <summary>
|
|
/// User ID
|
|
/// </summary>
|
|
public int Id { get; set; }
|
|
public UserConfig UserConfig { get; set; }
|
|
}
|
|
}
|