22 lines
686 B
C#
22 lines
686 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WorkFlowCheck.DL.Interfaces;
|
|
|
|
namespace WorkFlowCheck.DL.Entities
|
|
{
|
|
public class Equipment :ISoftDeletableEntity,IAuditableEntity
|
|
{
|
|
public int Id { get; set; }
|
|
public string ShortName { get; set; } = null!;
|
|
public string EquipmentNumber { get; set; } = null!;
|
|
public bool IsDeleted { get ; set ; }
|
|
public DateTime LastModAt { get ; set ; }
|
|
public string LastModBy { get ; set ; } = null!;
|
|
public DateTime CreatedAt { get ; set ; }
|
|
public string CreatedBy { get ; set ; } = null!;
|
|
}
|
|
}
|