mirror of
https://github.com/Shchoholiev/shopping-assistant-api.git
synced 2025-04-05 00:59:36 +00:00
13 lines
281 B
C#
13 lines
281 B
C#
using ShoppingAssistantApi.Domain.Common;
|
|
|
|
namespace ShoppingAssistantApi.Domain.Entities;
|
|
|
|
public class Wishlist : EntityBase
|
|
{
|
|
public required string Name { get; set; }
|
|
|
|
public required string Type { get; set; }
|
|
|
|
public ICollection<Message>? Messages { get; set; }
|
|
}
|