CSLA.NET 5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
IFieldDataT.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="IFieldDataT.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Defines the members required by a field</summary>
7//-----------------------------------------------------------------------
9{
14 public interface IFieldData<T> : IFieldData
15 {
21 new T Value { get; set; }
22 }
23}
Defines the members required by a field data storage object.
Definition: IFieldDataT.cs:15
object Value
Gets or sets the field value.
Definition: IFieldData.cs:27