You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace AppContext.Entities;
|
|
|
|
public class UserEntity
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public required string Name { get; set; }
|
|
public required string Email { get; set; }
|
|
public required string ProfilePicture { get; set; }
|
|
|
|
public ICollection<TacticEntity> Tactics { get; set; } = new List<TacticEntity>();
|
|
|
|
} |