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.
ISmartField.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="ISmartField.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Defines members required for smart</summary>
7//-----------------------------------------------------------------------
8using System;
9
10namespace Csla.Core
11{
18 public interface ISmartField
19 {
27 string Text { get; set; }
32 bool IsEmpty { get; }
33 }
34}
Defines members required for smart data types that understand the concept of being empty,...
Definition: ISmartField.cs:19
bool IsEmpty
Gets a value indicating whether the field's value is empty.
Definition: ISmartField.cs:32
string Text
Sets or gets the text representation of the value.
Definition: ISmartField.cs:27