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