sumatube/SumaTuba.Infra/MongoDB/Documents/UserPlan/UserPaymentDocument.cs
2025-04-21 23:01:55 -03:00

24 lines
490 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SumaTube.Infra.MongoDB.Documents.UserPlan
{
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; }
}
}