mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
14 lines
431 B
C#
14 lines
431 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class UserHouseholdUserViewModel
|
|
{
|
|
/// <summary>
|
|
/// users that belongs in this user's household
|
|
/// </summary>
|
|
public List<UserHouseholdViewModel> Households { get; set; }
|
|
/// <summary>
|
|
/// households that this user belongs to
|
|
/// </summary>
|
|
public List<UserHouseholdViewModel> UserHouseholds { get; set; }
|
|
}
|
|
} |