Files
components/LiteCharms.Features/Shop/CartPackages/Models/Package.cs
T
2026-05-13 20:06:24 +02:00

21 lines
429 B
C#

namespace LiteCharms.Features.Shop.CartPackages.Models;
public class Package
{
public Guid Id { get; set; }
public DateTimeOffset CreatedAt { get; set; }
public DateTimeOffset? UpdatedAt { get; set; }
public string? Name { get; set; }
public string? Summary { get; set; }
public string? Description { get; set; }
public string? ImageUrl { get; set; }
public bool Active { get; set; }
}