using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.ComponentModel.DataAnnotations; using Sleis.Validation.Attribute; namespace Sleis.Models { public abstract class FacilityContactMethodModel : ContactModel, IContactModel { //TODO: This needs to be re-named. Not sure why someone names this UserId. public virtual int UserId { get; set; } } }