• datdiep's avatar
    init · 567e6f12
    datdiep authored
    567e6f12
Partner.cs 479 Bytes
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; }
    }
}