using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.ComponentModel.DataAnnotations; using Sleis.Validation.Attribute; using Sleis.ViewModels; using Sleis.Utility; using System.Text.RegularExpressions; namespace Sleis.Models { public class UserContactModel : ContactModel, Sleis.Models.IContactModel { public virtual int UserId { get; set; } } }