source: iknow-api/Models/Payment.cs@ ea40556

Last change on this file since ea40556 was ea40556, checked in by Stefan-Saveski <stefansaveski19@…>, 8 days ago
  • ready for presentation
  • Property mode set to 100644
File size: 395 bytes
Line 
1using System.ComponentModel.DataAnnotations.Schema;
2
3namespace iknow_api.Models
4{
5 public class Payment
6 {
7 public int Id { get; set; }
8
9 public int UserId { get; set; }
10 public User? User { get; set; }
11 public int EnrollmentInfoId { get; set; }
12 public int Amount { get; set; }
13 public EnrolledSemesters? EnrolledSemesters { get; set; }
14
15 }
16}
Note: See TracBrowser for help on using the repository browser.