//------------------------------------------------------------------------------
//
// 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.
//
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
namespace Neo.Afx.Services
{
public partial class Service
{
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; }
public virtual ICollection ServiceSettings { get; set; }
}
}