API oldaláról sokminden
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
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 Location : ISoftDeletableEntity, IAuditableEntity
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public string FullName { get; set; } = null!;
|
||||
public bool IsDeleted { get ; set ; }
|
||||
public DateTime LastModAt { get ; set ; }
|
||||
public string LastModBy { get ; set ; }
|
||||
public DateTime CreatedAt { get ; set ; }
|
||||
public string CreatedBy { get ; set ; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user