//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; namespace OpenAuth.Domain { /// /// /// public partial class ApplyTransitionHistory :Entity { public ApplyTransitionHistory() { this.AllowedToUserNames= string.Empty; this.InitialState= string.Empty; this.DestinationState= string.Empty; this.Command= string.Empty; } /// /// /// public System.Guid ApplyId { get; set; } /// /// /// public System.Guid? UserId { get; set; } /// /// /// public string AllowedToUserNames { get; set; } /// /// /// public System.DateTime? TransitionTime { get; set; } /// /// /// public long Order { get; set; } /// /// /// public string InitialState { get; set; } /// /// /// public string DestinationState { get; set; } /// /// /// public string Command { get; set; } } }