Java CI / build (push) Successful in 1m56s
Signed-off-by: Dmitrii <computer@yawaflua.tech> Took 4 hours 25 minutes
17 lines
475 B
C#
17 lines
475 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace SpMega.Backend.Persistent.Models.Users;
|
|
|
|
[Owned]
|
|
public class Card
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Name { get; set; }
|
|
public string SpworldsID { get; set; }
|
|
public string Token { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
|
|
public DateTime UpdatedAt { get; set; }
|
|
public DateTime? DeletedAt { get; set; }
|
|
public bool IsDeleted { get; set; } = false;
|
|
} |