mirror of
https://github.com/D4M13N-D3V/comissions-app-core-api.git
synced 2025-03-13 09:34:55 +00:00
11 lines
319 B
C#
11 lines
319 B
C#
namespace comissions.app.api.Models;
|
|
|
|
public class PayoutModel
|
|
{
|
|
public int PayoutDelayDays { get; set; }
|
|
public string Interval { get; set; }
|
|
public double Balance { get; set; }
|
|
public bool Enabled { get; set; }
|
|
public string PayoutUrl { get; set; }
|
|
public double PendingBalance { get; set; }
|
|
} |