feat: Fixed errors
This commit is contained in:
10
LctMonolith/Models/UserArtifact.cs
Normal file
10
LctMonolith/Models/UserArtifact.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace LctMonolith.Models;
|
||||
|
||||
public class UserArtifact
|
||||
{
|
||||
public Guid UserId { get; set; }
|
||||
public AppUser User { get; set; } = null!;
|
||||
public Guid ArtifactId { get; set; }
|
||||
public Artifact Artifact { get; set; } = null!;
|
||||
public DateTime ObtainedAt { get; set; } = DateTime.UtcNow;
|
||||
}
|
||||
Reference in New Issue
Block a user