22 lines
610 B
C#
22 lines
610 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using WorkFlowCheck.DL.Interfaces;
|
|
|
|
namespace WorkFlowCheck.DL.Entities
|
|
{
|
|
public class Role :ISoftDeletableEntity,IAuditableEntity
|
|
{
|
|
public int Id { get; set; }
|
|
public string RoleName { get; set; }
|
|
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 ; }
|
|
}
|
|
}
|