902942eee6
continuous-integration/drone/pr Build is passing
Sealed qualifying public classes Migrated database changes
21 lines
422 B
C#
21 lines
422 B
C#
namespace LiteCharms.Features.MidrandBooks.Payments.Models;
|
|
|
|
public class Refund
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public long OrderId { get; set; }
|
|
|
|
public RefundTypes Type { get; set; }
|
|
|
|
public RefundStatus Status { get; set; }
|
|
|
|
public string? Reason { get; set; }
|
|
|
|
public decimal Amount { get; set; }
|
|
}
|