mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 17:43:12 +02:00
13 lines
244 B
C#
13 lines
244 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace MvcMovie.Models
|
|
{
|
|
public class User
|
|
{
|
|
|
|
public string? email { get; set; }
|
|
public int ID { get; set; }
|
|
|
|
public string? password { get; set; }
|
|
}
|
|
} |