namespace RobotNet10.FleetManager.Shared.DTOs.RobotModel;
///
/// Robot model usage information DTO
///
public class RobotModelUsageInfoDto
{
public Guid Id { get; set; }
public string ModelName { get; set; } = string.Empty;
public int RobotCount { get; set; }
///
/// Indicates whether this model can be deleted (no robots using it)
///
public bool CanDelete => RobotCount == 0;
}