generated from ricardo/MVCLogin
21 lines
588 B
C#
21 lines
588 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Blinks.Domain.Entities
|
|
{
|
|
public class UserPlan
|
|
{
|
|
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; }
|
|
}
|
|
}
|