20 lines
399 B
C#
20 lines
399 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace BeWoPlanerMobil.Models
|
|
{
|
|
[Serializable]
|
|
public class PersonSessionModel : BaseSessionModel
|
|
{
|
|
public long? SelectedPersonOid { get; set; }
|
|
|
|
public override void ResetValues()
|
|
{
|
|
base.ResetValues();
|
|
|
|
SelectedPersonOid = null;
|
|
}
|
|
}
|
|
} |