reactredux/webapi/Core/DomainObjects/Passwords.cs

26 lines
563 B
C#

using Core.Abstractions.DomainObjects;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Core.DomainObjects {
public class Passwords : DomainObjectBase<Passwords> {
public string PwHash { get; set; }
public string PwSalt { get; set; }
public DateTime Created { get; set; }
public DateTime? Expiration { get; set; }
public List<Passwords> Expired { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}