initial commit

This commit is contained in:
2024-07-14 19:45:34 +07:00
commit d568ec6970
21 changed files with 594 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
namespace Domain.Models;
public class Description
{
public int Id { get; set; }
public int Price { get; set; }
public string Currency { get; set; }
public string Metadata { get; set; }
public int ProductId { get; set; }
}