using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Threading.Tasks;
namespace UF.AssessmentProject.Model.Partner
{
[Keyless]
public class Partner
{
[StringLength(50, ErrorMessage = "Name length can't be more than 50.")]
public string partnerkey { get; set; }
public string partnerpassword { get; set; }
}
}
-
datdiep authored567e6f12