using GerstITS.Data; namespace GerstITS.Examples.Transactions.Entities; public sealed class ProductEntity : EntityBase { #region Properties public string Name { get; set; } public decimal Price { get; set; } #endregion }