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; } }