24 lines
663 B
C#
24 lines
663 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Weiferl.Databas.EF.Models
|
|
{
|
|
public partial class User
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public Guid UserId { get; set; }
|
|
public string Firstname { get; set; }
|
|
public string Lastname { get; set; }
|
|
public string Email { get; set; }
|
|
public DateTime? Birthday { get; set; }
|
|
public bool IsDeleted { get; set; }
|
|
public string CountrySlug { get; set; }
|
|
public DateTime? RegisterDate { get; set; }
|
|
}
|
|
}
|