Sky.Net/Core/Entities/OrderAggregate/DeliveryMethod.cs

15 lines
383 B
C#
Raw Normal View History

2022-05-24 15:35:03 -07:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Core.Entities.OrderAggregate
{
public class DeliveryMethod : BaseEntity
{
public string ShortName { get; set; }
public string DeliveryTime { get; set; }
public string Description { get; set; }
public decimal Price { get; set; }
}
}