mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 09:01:18 +03:00
13 lines
430 B
C#
13 lines
430 B
C#
using PracticeCalendar.Domain.Common;
|
|
using PracticeCalendar.Domain.Common.Interfaces;
|
|
using PracticeCalendar.Domain.ValueObjects;
|
|
|
|
namespace PracticeCalendar.Domain.Entities.Product
|
|
{
|
|
public class Product : EntityBase, IAggregateRoot
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Category { get; set; } = string.Empty;
|
|
public Price UnitPrice { get; set; } = Price.Empty;
|
|
}
|
|
} |