10 lines
No EOL
183 B
C#
10 lines
No EOL
183 B
C#
using System;
|
|
|
|
namespace API.Entities.Interfaces
|
|
{
|
|
public interface IEntityDate
|
|
{
|
|
DateTime Created { get; set; }
|
|
DateTime LastModified { get; set; }
|
|
}
|
|
} |