mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
9 lines
331 B
C#
9 lines
331 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class UserCollaboratorViewModel
|
|
{
|
|
public List<int> VehicleIds { get; set; } = new List<int>();
|
|
public List<string> CommonCollaborators { get; set; } = new List<string>();
|
|
public List<string> PartialCollaborators { get; set; } = new List<string>();
|
|
}
|
|
} |