using System; using System.Collections.Generic; using System.Text; namespace OFBButte.Entities { public class Profile { public int Id { get; set; } public DateTime ModifiedDate { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Street { get; set; } public string City { get; set; } public string State { get; set; } public string Zip { get; set; } public string Country { get; set; } public ProfileFederationCode ProfileFederationCode { get; set; } } }