14 lines
246 B
C#
14 lines
246 B
C#
using GerstITS.Data;
|
|
|
|
namespace GerstITS.Examples.Transactions.Entities;
|
|
|
|
public sealed class ProductEntity : EntityBase<int>
|
|
{
|
|
#region Properties
|
|
|
|
public string Name { get; set; }
|
|
public decimal Price { get; set; }
|
|
|
|
#endregion
|
|
}
|