reactredux/webapi/Core/DomainObjects/PasswordExpiration.cs

18 lines
433 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 PasswordExpiration : DomainObjectBase<PasswordExpiration> {
public bool Enabled { get; set; }
public int Days { get; set; }
public override int GetHashCode() {
throw new NotImplementedException();
}
}
}