| 12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- namespace Database.Database;
- public partial class Packg
- {
- public int? Id { get; set; }
- public int? CountryId { get; set; }
- public string? PackageCode { get; set; }
- public decimal? DisplayPrice { get; set; }
- public int? AmountData { get; set; }
- public short? DayDuration { get; set; }
- public bool? IsUnlimited { get; set; }
- public string? PackageName { get; set; }
- public string? Title { get; set; }
- public string? Description { get; set; }
- public int? Status { get; set; }
- public long? SellPrice { get; set; }
- }
|