23 lines
462 B
C#
23 lines
462 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.EntityFrameworkCore.Entities
|
|||
|
|
{
|
|||
|
|
public interface ICreationAudited<TUser> : IHasCreator<TUser>, IHasCreationTime
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IHasCreator<TUser>
|
|||
|
|
{
|
|||
|
|
TUser CreatorId { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IHasCreationTime
|
|||
|
|
{
|
|||
|
|
DateTime CreationTime { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|