23 lines
495 B
C#
23 lines
495 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 Password? Password { get; set; }
|
|
|
|
public PasswordExpiration Expiration { get; set; }
|
|
|
|
public List<Password> Expired { get; set; }
|
|
|
|
public override int GetHashCode() {
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|