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

added ukprn to school and some other fields for transfers #12

Merged
merged 1 commit into from
Nov 22, 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.4</Version>
<Version>1.0.5</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 @@ -4,6 +4,7 @@
public class EstablishmentDto
{

public string Ukprn { get; set; }
public string Urn { get; set; }
public string Name { get; set; }
public string LocalAuthorityCode { get; set; }
Expand All @@ -18,6 +19,12 @@
public string Pan { get; set; }
public string Deficit { get; set; }
public string ViabilityIssue { get; set; }
public string GiasLastChangedDate { get; set; }
public string NoOfBoys { get; set; }
public string NoOfGirls { get; set; }
public string SenUnitCapacity { get; set; }
public string SenUnitOnRoll { get; set; }
public string ReligousEthos { get; set; }
public NameAndCodeDto Diocese { get; set; }
public NameAndCodeDto EstablishmentType { get; set; }
public NameAndCodeDto Gor { get; set; }
Expand Down Expand Up @@ -57,6 +64,9 @@
[Serializable]
public class CensusDto
{
public string NumberOfPupils { get; set; }

Check warning on line 67 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 68 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 69 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 70 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; }

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

View workflow job for this annotation

GitHub Actions / build

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