Files
isn/src/nuget-host/Data/Package.cs
Paul Schneider e4511a8aaa owner id
2021-05-16 14:07:14 +01:00

18 lines
429 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace nuget_host.Data
{
public class Package
{
[Key][Required]
public string Id { get; set; }
[Required]
[ForeignKey("Owner")]
public string OwnerId { get; set; }
public string Description { get; set; }
virtual public ApplicationUser Owner { get; set; }
}
}