Files
components/LiteCharms.Features.MidrandBooks/Order/Models/ShippingProvider.cs
T
2026-05-26 00:47:07 +02:00

19 lines
391 B
C#

namespace LiteCharms.Features.MidrandBooks.Order.Models;
public class ShippingProvider
{
public long Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public ShippingProviderTypes Type { get; set; }
public string? Name { get; set; }
public decimal? Price { get; set; }
public bool Enabled { get; set; }
}