reactredux/webapi/Core/DomainObjects/User.cs

30 lines
687 B
C#

using Core.Abstractions;
using Core.Abstractions.DomainObjects;
using Core.Entities;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core.DomainObjects {
public class User : DomainObject {
public Guid Id { get; set; }
public string NickName { get; set; }
public string Hash { get; set; }
public string Salt { get; set; }
public string Name { get; set; }
public string LastName { get; set; }
public Contact Email { get; set; }
public Contact Mobile { get; set; }
public Address BillingAddress { get; set; }
public Address ShippingAddress { get; set; }
}
}