46 lines
1.3 KiB
C#
46 lines
1.3 KiB
C#
using System;
|
|
using CSLA;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
#pragma warning disable 1591
|
|
/// <summary>
|
|
/// Summary description for SearchResult.
|
|
/// </summary>
|
|
[Serializable]
|
|
public struct SearchResult
|
|
{
|
|
|
|
private float rank;
|
|
public float Rank {get{return rank;}set{rank=value;}}
|
|
|
|
private string description;
|
|
public string Description {get{return description;}set{description=value;}}
|
|
|
|
private RootObjectTypes ancestorRootObjectType;
|
|
public RootObjectTypes AncestorRootObjectType {get{return ancestorRootObjectType;}set{ancestorRootObjectType=value;}}
|
|
|
|
private Guid ancestorRootObjectID;
|
|
public Guid AncestorRootObjectID {get{return ancestorRootObjectID;}set{ancestorRootObjectID=value;}}
|
|
|
|
private string extract;
|
|
public string Extract {get{return extract;}set{extract=value;}}
|
|
|
|
private SmartDate mCreated;
|
|
public SmartDate Created {get{return mCreated;}set{mCreated=value;}}
|
|
|
|
private SmartDate mModified;
|
|
public SmartDate Modified {get{return mModified;}set{mModified=value;}}
|
|
|
|
private Guid mCreator;
|
|
public Guid Creator {get{return mCreator;}set{mCreator=value;}}
|
|
|
|
private Guid mModifier;
|
|
public Guid Modifier {get{return mModifier;}set{mModifier=value;}}
|
|
|
|
|
|
|
|
}
|
|
#pragma warning restore 1591
|
|
}
|