-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
Feature/academies api contracts
- Loading branch information
There are no files selected for viewing
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; } | ||
Check warning on line 11 in academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs GitHub Actions / build
|
||
|
||
public string Town { get; set; } | ||
Check warning on line 13 in academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs GitHub Actions / build
|
||
|
||
public string County { get; set; } | ||
Check warning on line 15 in academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs GitHub Actions / build
|
||
|
||
public string Postcode { get; set; } | ||
Check warning on line 17 in academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs GitHub Actions / build
|
||
|
||
public string Locality { get; set; } | ||
Check warning on line 19 in academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs GitHub Actions / build
|
||
|
||
public string Additional { get; set; } | ||
Check warning on line 21 in academiesContracts/Dfe.Academies.Contracts/V4/AddressDto.cs GitHub Actions / build
|
||
} |