19 lines
476 B
C#
19 lines
476 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MongoProject.Domain.Common
|
|
{
|
|
public abstract class BaseDomainModel
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime? CreatedDate { get; set; }
|
|
public string? CreatedBy { get; set; }
|
|
|
|
public DateTime? LastModifiedDate { get; set; }
|
|
public string? LastModifiedBy { get; set; }
|
|
}
|
|
}
|