yavsc/Yavsc/Model/Relationship/Contact.cs

19 lines
427 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace Yavsc.Models
{
public class Contact
{
[Required()]
public string UserId { get; set; }
[Required()]
public string OwnerId { get; set; }
[ForeignKeyAttribute("OwnerId"),JsonIgnore]
public virtual ApplicationUser Owner { get; set; }
}
}