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

Added head teacher fields to the etablishment #15

Merged
merged 1 commit into from
Nov 23, 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.7</Version>
<Version>1.0.8</Version>
<AssemblyVersion>1.0.4</AssemblyVersion>
<FileVersion>1.0.4</FileVersion>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@
public string SenUnitCapacity { get; set; }
public string SenUnitOnRoll { get; set; }
public string ReligousEthos { get; set; }

public string HeadTitle { get; set; }
public string HeadFirstName { get; set; }
public string HeadLastName { get; set; }
public string HeadPreferredJobTitle { get; set; }

public NameAndCodeDto Diocese { get; set; }
public NameAndCodeDto EstablishmentType { get; set; }
public NameAndCodeDto Gor { get; set; }
Expand Down Expand Up @@ -64,9 +70,9 @@
[Serializable]
public class CensusDto
{
public string NumberOfPupils { get; set; }

Check warning on line 73 in academiesContracts/Dfe.Academies.Contracts/V4/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 74 in academiesContracts/Dfe.Academies.Contracts/V4/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.
public string PercentageFsmLastSixYears { get; set; }

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

View workflow job for this annotation

GitHub Actions / build

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

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

View workflow job for this annotation

GitHub Actions / build

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