diff --git a/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs b/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs index ba2baac..a809e67 100644 --- a/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs +++ b/20220330_Vote/Vote.Services/Dto/ProjectsInput.cs @@ -93,8 +93,8 @@ namespace Vote.Services.Dto { get { - //return yes_count >= 12; - return (yes_count / (yes_count + no_count)) >= (2.0 / 3.0); + return yes_count >= 11; + //return (yes_count / (yes_count + no_count)) >= (2.0 / 3.0); } } ///