SplitPresetMember.cs
381 bytes
| 1 | using App.Domain.Identity; |
|---|---|
| 2 | using Base.Domain; |
| 3 | |
| 4 | namespace App.Domain; |
| 5 | |
| 6 | public class SplitPresetMember : BaseEntity |
| 7 | { |
| 8 | public Guid SplitPresetId { get; set; } |
| 9 | public SplitPreset? SplitPreset { get; set; } |
| 10 | |
| 11 | public Guid UserId { get; set; } |
| 12 | public AppUser? User { get; set; } |
| 13 | |
| 14 | public decimal? ShareWeight { get; set; } |
| 15 | public decimal? Percentage { get; set; } |
| 16 | } |
| 17 | |