lubelog/Models/User/UserCollaboratorViewModel.cs
DESKTOP-T0O5CDB\DESK-555BD 5c895b4f82 some code cleanup
2025-11-12 09:03:21 -07:00

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>();
}
}