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

Added name and code dto as the trust type #14

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.6</Version>
<Version>1.0.7</Version>
<AssemblyVersion>1.0.4</AssemblyVersion>
<FileVersion>1.0.4</FileVersion>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
namespace Dfe.Academies.Contracts.V4.Trusts;

using Dfe.Academies.Contracts.V4.Establishments;

[Serializable]
public class TrustDto
{
public string Name { get; set; }

public string Ukprn { get; set; }
public string Type { get; set; }
public NameAndCodeDto Type { get; set; }

public string CompaniesHouseNumber { get; set; }

Expand Down
Loading