parent
bd40fad473
commit
d7f6994b45
@ -0,0 +1,15 @@ |
|||||||
|
using System.ComponentModel.DataAnnotations; |
||||||
|
|
||||||
|
namespace PeacePDS.Models.Entities |
||||||
|
{ |
||||||
|
public class Affirmation |
||||||
|
{ |
||||||
|
public int Id { get; set; } |
||||||
|
public int UserId { get; set; } |
||||||
|
public DateTime Month { get; set; } |
||||||
|
public string AffirmationWord { get; set; } |
||||||
|
public DateTime CreatedAt { get; set; } = DateTime.Now; |
||||||
|
|
||||||
|
public User User { get; set; } |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue