You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
405 B

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace ex_042_011_SinglePropertyNavigation_FluentAPI
{
public class Information
{
public int InformationId { get; set; }
public string MadeBy { get; set; }
public string MadeIn { get; set; }
}
}