20 lines
342 B
C#
20 lines
342 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus
|
|||
|
|
{
|
|||
|
|
public interface ICassandraEntity<TKey>
|
|||
|
|
{
|
|||
|
|
TKey Id { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IHasCreationTime
|
|||
|
|
{
|
|||
|
|
DateTime CreationTime { get; set; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IHasLastModificationTime
|
|||
|
|
{
|
|||
|
|
DateTime? LastModificationTime { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|