using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SumaTube.Infra.MongoDB.Documents { public class UserPaymentDocument { public string Id { get; set; } public string Name { get; set; } public decimal Value { get; set; } public DateTime StartDate { get; set; } public DateTime EndDate { get; set; } public bool IsActive { get; set; } } }