Serving a payment option for my minecraft server so I don't have to pay for it all alone
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

MinecraftMonthPaid.class.php 578B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * @Name minecraft_month_paid
  4. * @Unique Month, Year
  5. */
  6. class MinecraftMonthPaid extends Entity
  7. {
  8. /**
  9. * @DB-Column
  10. * @Name ID
  11. * @Type INT
  12. * @Primary
  13. * @AutoIncrement
  14. * @NotNull
  15. */
  16. public $ID;
  17. /**
  18. * @DB-Column
  19. * @Name Amount
  20. * @Type DECIMAL(10,2)
  21. * @NotNull
  22. */
  23. public $Amount;
  24. /**
  25. * @DB-Column
  26. * @Name Month
  27. * @Type INT(4)
  28. * @NotNull
  29. */
  30. public $Month;
  31. /**
  32. * @DB-Column
  33. * @Name Year
  34. * @Type INT
  35. * @NotNull
  36. */
  37. public $Year;
  38. }