phronCare/Domain/Entities/EAccountType.cs

12 lines
312 B
C#
Raw Normal View History

2025-04-14 17:50:25 -03:00
namespace Domain.Entities
2025-04-03 15:49:04 -03:00
{
public class EAccountType
{
public int Id { get; set; }
public string Name { get; set; } = null!;
public string? Description { get; set; }
public decimal? CreditLimit { get; set; }
public DateTime? CreationDate { get; set; }
}
}