Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / ApplicationCore / Entities / BaseEntity.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 347 bytes Init
namespace Microsoft.eShopWeb.ApplicationCore.Entities
{
    // This can easily be modified to be BaseEntity<T> and public T Id to support different key types.
    // Using non-generic integer types for simplicity and to ease caching logic
    public abstract class BaseEntity
    {
        public virtual int Id { get; protected set; }
    }
}