Files
components/LiteCharms.Models/Product.cs
T
2026-05-03 16:10:27 +02:00

13 lines
214 B
C#

namespace LiteCharms.Models;
public class Product
{
public Guid Id { get; set; }
public string? Name { get; set; }
public string? Description { get; set; }
public bool Active { get; set; }
}