Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Added required fields and iterated version #8

Merged
merged 1 commit into from
Oct 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/DFE-Digital/academisation-nuget-packages</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>1.0.1</Version>
<Version>1.0.2</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
public string SchoolCapacity { get; set; }
public string Pfi { get; set; }
public string EstablishmentNumber { get; set; }
public string Pan { get; set; }
public string Deficit { get; set; }
public string ViabilityIssue { get; set; }
public NameAndCodeDto Diocese { get; set; }
public NameAndCodeDto EstablishmentType { get; set; }
public NameAndCodeDto Gor { get; set; }
Expand All @@ -39,16 +42,16 @@
[Serializable]
public class MisEstablishmentDto
{
public string DateOfLatestSection8Inspection { get; set; }

Check warning on line 45 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'DateOfLatestSection8Inspection' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string InspectionEndDate { get; set; }

Check warning on line 46 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'InspectionEndDate' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

public string OverallEffectiveness { get; set; }

Check warning on line 48 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'OverallEffectiveness' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string QualityOfEducation { get; set; }

Check warning on line 49 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'QualityOfEducation' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string BehaviourAndAttitudes { get; set; }

Check warning on line 50 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'BehaviourAndAttitudes' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string PersonalDevelopment { get; set; }

Check warning on line 51 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'PersonalDevelopment' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string EffectivenessOfLeadershipAndManagement { get; set; }

Check warning on line 52 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'EffectivenessOfLeadershipAndManagement' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.

public string EarlyYearsProvision { get; set; }

Check warning on line 54 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'EarlyYearsProvision' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string SixthFormProvision { get; set; }
public string Weblink { get; set; }
}
Expand All @@ -56,6 +59,6 @@
[Serializable]
public class CensusDto
{
public string NumberOfPupils { get; set; }

Check warning on line 62 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'NumberOfPupils' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
public string PercentageFsm { get; set; }

Check warning on line 63 in academiesContracts/Dfe.Academies.Contracts/Establishments/EstablishmentDto.cs

View workflow job for this annotation

GitHub Actions / build

Non-nullable property 'PercentageFsm' must contain a non-null value when exiting constructor. Consider declaring the property as nullable.
}
Loading