generated from ricardo/MVCLogin
21 lines
602 B
C#
21 lines
602 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SumaTube.Domain.Entities.UserPlan
|
|
{
|
|
public class UserPayment
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string Description { get; set; }
|
|
public string UserPlanId { get; set; }
|
|
public string IdPagto { get; private set; }
|
|
public string EmailPagto { get; private set; }
|
|
public DateTime? DatePagto { get; private set; }
|
|
public DateTime? DateUntil { get; private set; }
|
|
}
|
|
}
|