Files
site-pi/SitePi/Models/Profile.cs
2019-11-27 18:42:43 -03:00

20 lines
431 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
using SitePi.Models;
namespace SitePi.Models
{
public class Profile
{
[Key]
public int Id { get; set; }
[Required]
public string Name { get; set; }
}
}