123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Financial
- {
- public class ComputeRoyaltiesDto
- {
- public int UserId { get; set; }
- public string StartDate { get; set; }
- public string EndDate { get; set; }
- }
- }
|