You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 rivejä
306 B

  1. using System;
  2. namespace Domain
  3. {
  4. public class BaseEntity
  5. {
  6. public Guid Id { get; set; } = Guid.NewGuid();
  7. public bool Deleted { get; set; }
  8. public DateTime CreateDate { get; set; } = DateTime.Now;
  9. public DateTime ModifyDate { get; set; } = DateTime.Now;
  10. }
  11. }