sumatube/SumaTuba.Infra/MongoDB/Documents/UserPaymentDocument.cs
2025-04-20 23:33:46 -03:00

24 lines
481 B
C#

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; }
}
}