//------------------------------------------------------------------------------
//
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//------------------------------------------------------------------------------
namespace Neo.Afx.Services
{
using System;
using System.Collections.Generic;
public partial class Service
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public Service()
{
this.ServiceSettings = new HashSet();
}
public int ServiceID { get; set; }
public string ServiceName { get; set; }
public string ServiceTypeName { get; set; }
public short PollFrequencyID { get; set; }
public string PollTime { get; set; }
public Nullable LastRunDate { get; set; }
public bool IsCancelled { get; set; }
public long CreatedByID { get; set; }
public System.DateTime CreatedDate { get; set; }
public long UpdatedByID { get; set; }
public System.DateTime UpdatedDate { get; set; }
public virtual PollFrequency PollFrequency { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection ServiceSettings { get; set; }
}
}