mirror of
https://github.com/hargata/lubelog.git
synced 2025-12-10 00:46:08 -06:00
8 lines
227 B
C#
8 lines
227 B
C#
namespace CarCareTracker.Models
|
|
{
|
|
public class VehicleCollaboratorViewModel
|
|
{
|
|
public List<UserCollaborator> Collaborators { get; set; }
|
|
public bool CanModifyCollaborators { get; set; } = true;
|
|
}
|
|
} |