21 lines
419 B
C#
21 lines
419 B
C#
namespace LiteCharms.Features.MidrandBooks.Order.Models;
|
|
|
|
public class Refund
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public Guid OrderId { get; set; }
|
|
|
|
public RefundTypes Type { get; set; }
|
|
|
|
public RefundStatus Status { get; set; }
|
|
|
|
public string? Reason { get; set; }
|
|
|
|
public decimal Amount { get; set; }
|
|
}
|