using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace StockMan.Data.DbModels
{
//
// This is here so CodeMaid doesn't reorganize this document
//
[Table("Operator")]
public partial class OperatorModel
{
public OperatorModel()
{
ItemFluxModOperators = new HashSet();
ItemFluxOperators = new HashSet();
}
public string Id { get; set; } = null!;
public string CodExt { get; set; } = null!;
public string LastName { get; set; } = null!;
public string FirstName { get; set; } = null!;
public virtual ICollection ItemFluxModOperators { get; set; }
public virtual ICollection ItemFluxOperators { get; set; }
}
}