-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
59ba7e1
commit 2e28e22
Showing
6 changed files
with
491 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using UrphaCapital.Domain.Entities.Auth; | ||
|
||
namespace UrphaCapital.Domain.Entities | ||
{ | ||
public class Payment | ||
{ | ||
public long Id { get; set; } | ||
public long StudentId { get; set; } | ||
public Guid CourseId { get; set; } | ||
public decimal Amount { get; set; } | ||
|
||
public DateTimeOffset PaymentDate = DateTimeOffset.UtcNow; | ||
public string PaymentStatus { get; set; } | ||
public Student Student { get; set; } | ||
public Course Course { get; set; } | ||
} | ||
} |
Oops, something went wrong.