Files
components/LiteCharms.Features.MidrandBooks/Orders/Models/ShippingProvider.cs
T
2026-05-26 08:24:38 +02:00

19 lines
392 B
C#

namespace LiteCharms.Features.MidrandBooks.Orders.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; }
}