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.
AutoSerializableAttribute.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="AutoSerializableAttribute.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Indicate that a type should be auto serialized</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Serialization
11{
12
16 [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct)]
17 public class AutoSerializableAttribute : Attribute
18 {
19 }
20
21}
Indicate that a type should be auto serialized