25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using System;
-
- namespace Domain
- {
- public class BaseEntity
- {
- public Guid Id { get; set; } = Guid.NewGuid();
- public bool Deleted { get; set; }
- public DateTime CreateDate { get; set; } = DateTime.Now;
- public DateTime ModifyDate { get; set; } = DateTime.Now;
- }
- }
|