namespace UtopiaCanteenSystem.Models;
///
/// Represents a labour/worker entity. CardId is the primary identifier from RFID.
///
public class Labour
{
public int Id { get; set; }
/// RFID card identifier; used for scan matching.
public string CardId { get; set; } = string.Empty;
/// Optional display name for the labour.
public string? Name { get; set; }
}