mirror of
https://github.com/farcasclaudiu/PracticeCalendar.git
synced 2026-06-22 07:01:16 +03:00
13 lines
357 B
C#
13 lines
357 B
C#
using PracticeCalendar.Domain.Common;
|
|
|
|
namespace PracticeCalendar.Domain.ValueObjects
|
|
{
|
|
public class Price : ValueObject
|
|
{
|
|
public static Price Empty = new Price();
|
|
public static string DEFAULT_CURRENCY = "EUR";
|
|
|
|
public decimal Value { get; set; }
|
|
public string Currency { get; set; } = Price.DEFAULT_CURRENCY;
|
|
}
|
|
} |