using gehGassi.Domain.Dogs; using gehGassi.Domain.Payment; using gehGassi.Dto.Payment; namespace gehGassi.Web.Models { /// /// Viewmodel für das Autopayout tool /// public class AutoPayoutVm { public Wallet Wallet { get; set; } public AppUser AppUser { get; set; } } public class RunAutoPayoutVm { public Wallet Wallet { get; set; } public AppUser AppUser { get; set; } public PayoutDto PayoutDto { get; set; } } }