28 lines
886 B
C#
28 lines
886 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace StockMan.Data.DbModels
|
|
{
|
|
// <Auto-Generated>
|
|
// This is here so CodeMaid doesn't reorganize this document
|
|
// </Auto-Generated>
|
|
[Table("Operator")]
|
|
public partial class OperatorModel
|
|
{
|
|
public OperatorModel()
|
|
{
|
|
ItemFluxModOperators = new HashSet<ItemFluxModel>();
|
|
ItemFluxOperators = new HashSet<ItemFluxModel>();
|
|
}
|
|
|
|
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<ItemFluxModel> ItemFluxModOperators { get; set; }
|
|
public virtual ICollection<ItemFluxModel> ItemFluxOperators { get; set; }
|
|
}
|
|
}
|