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.

19 lines
348 B

using System;
using System.ComponentModel.DataAnnotations.Schema;
namespace MyLibraryEntities
{
public class LinkEntity
{
public string Id { get; set; }
public string Title { get; set; }
public string Url { get; set; }
[ForeignKey("AuthorId")]
public AuthorEntity Author { get; set; }
public string AuthorId { get; set; }
}
}