profileShare

rasmusjy / splitapp-backend-clean-onion

Read-only snapshot

No repository description.

main default branch 429 files Expires Sep 13, 2026, 9:06 AM
SplitPresetMemberDto.cs 264 bytes
1 namespace App.DTO.v1;
2
3 public class SplitPresetMemberDto
4 {
5 public Guid Id { get; set; }
6 public Guid UserId { get; set; }
7 public string? UserName { get; set; }
8 public decimal? ShareWeight { get; set; }
9 public decimal? Percentage { get; set; }
10 }
11