This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
namespace fix and moved address out of trust class
- Loading branch information
1 parent
7125870
commit 96f8092
Showing
4 changed files
with
27 additions
and
20 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace Dfe.Academies.Contracts.V4; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
[Serializable] | ||
public class AddressDto | ||
{ | ||
public string Street { get; set; } | ||
|
||
public string Town { get; set; } | ||
|
||
public string County { get; set; } | ||
|
||
public string Postcode { get; set; } | ||
|
||
public string Locality { get; set; } | ||
|
||
public string Additional { get; set; } | ||
} |
4 changes: 1 addition & 3 deletions
4
academiesContracts/Dfe.Academies.Contracts/V4/Establishments/EstablishmentDto.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters