CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
AddressPOCO.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="AddressPOCO.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Class that can be used for testing serialization behaviour</summary>
7//-----------------------------------------------------------------------
9using System;
10using System.Collections.Generic;
11using System.Text;
12
14{
15
16 [AutoSerializable]
17 public partial class AddressPOCO
18 {
19
20 public string AddressLine1 { get; set; }
21
22 public string AddressLine2 { get; set; }
23
24 public string Town { get; set; }
25
26 public string County { get; set; }
27
28 public string Postcode { get; set; }
29
30 }
31}