namespace CarCareTracker.Models { public class UserCollaboratorViewModel { public List VehicleIds { get; set; } = new List(); public List CommonCollaborators { get; set; } = new List(); public List PartialCollaborators { get; set; } = new List(); } }