17 lines
283 B
C#
17 lines
283 B
C#
using System;
|
|
|
|
namespace _0_Framework_b.Domain
|
|
{
|
|
public class EntityBase
|
|
{
|
|
public long id { get; set; }
|
|
public DateTime CreationDate { get; set; }
|
|
|
|
public EntityBase()
|
|
{
|
|
CreationDate=DateTime.Now;
|
|
|
|
}
|
|
}
|
|
}
|