19 lines
464 B
C#
19 lines
464 B
C#
using Microsoft.Extensions.Configuration;
|
|
using Microsoft.Extensions.Configuration.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IRaCIS.Core.Domain.Share
|
|
{
|
|
public class ServiceVerifyConfigOption
|
|
{
|
|
public bool OpenUserComplexPassword { get; set; }
|
|
|
|
public bool OpenSignDocumentBeforeWork { get; set; }
|
|
|
|
|
|
public bool OpenTrialRelationDelete { get; set; }
|
|
|
|
public bool OpenLoginLimit { get; set; }
|
|
}
|
|
} |